From 657a0b919f2ff7e79ce4e1f555c50f23226e3ee2 Mon Sep 17 00:00:00 2001 From: Nicolas Despres Date: Sat, 19 Nov 2011 18:49:38 +0100 Subject: Fix compilation warning with getopt_long() on MinGW. --- src/getopt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/getopt.h b/src/getopt.h index 20a7dc7..ead9878 100644 --- a/src/getopt.h +++ b/src/getopt.h @@ -41,9 +41,9 @@ extern "C" /* function prototypes */ int getopt (int argc, char **argv, char *optstring); int getopt_long (int argc, char **argv, const char *shortopts, - GETOPT_LONG_OPTION_T * longopts, int *longind); + const GETOPT_LONG_OPTION_T * longopts, int *longind); int getopt_long_only (int argc, char **argv, const char *shortopts, - GETOPT_LONG_OPTION_T * longopts, int *longind); + const GETOPT_LONG_OPTION_T * longopts, int *longind); #ifdef __cplusplus }; -- cgit v0.12