Commit d407c3ff authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Const warning

parent 9b749a07
......@@ -738,9 +738,9 @@ int makedir( const char *newdir )
static int currentGzFd = -1;
static void * currentGzVp = NULL;
int gzopen_frontend( char *pathname, int oflags, int mode )
int gzopen_frontend( const char *pathname, int oflags, int mode )
{
char *gzflags;
const char *gzflags;
gzFile gzf;
switch( oflags )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment