summaryrefslogtreecommitdiffstats
path: root/libhb/ports.c
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2015-10-19 11:50:02 -0700
committerJohn Stebbins <[email protected]>2015-10-19 11:50:02 -0700
commit8a01c54c5cfd7107a00ab8417af07e161ff97b56 (patch)
tree1bc15d6927c6e7f588f6b456ef7e32e452de48e0 /libhb/ports.c
parent3a9d7dce64a3057f21419f0cd765cdf929a66dad (diff)
ports: make hb_opendir param const
Diffstat (limited to 'libhb/ports.c')
-rw-r--r--libhb/ports.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/ports.c b/libhb/ports.c
index ee896acb4..1bc4f283a 100644
--- a/libhb/ports.c
+++ b/libhb/ports.c
@@ -682,7 +682,7 @@ FILE * hb_fopen(const char *path, const char *mode)
#endif
}
-HB_DIR* hb_opendir(char *path)
+HB_DIR* hb_opendir(const char *path)
{
#ifdef SYS_MINGW
HB_DIR *dir;