diff options
author | John Stebbins <[email protected]> | 2015-10-19 11:50:02 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2015-10-19 11:50:02 -0700 |
commit | 8a01c54c5cfd7107a00ab8417af07e161ff97b56 (patch) | |
tree | 1bc15d6927c6e7f588f6b456ef7e32e452de48e0 /libhb/ports.c | |
parent | 3a9d7dce64a3057f21419f0cd765cdf929a66dad (diff) |
ports: make hb_opendir param const
Diffstat (limited to 'libhb/ports.c')
-rw-r--r-- | libhb/ports.c | 2 |
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; |