Fix develop error in getopt_long_only

The error was due to casting `const` away for permuting argv
elements, which is necessary for a libc for compatibility with older
systems, but not for us.

Checkpatch will complain about the style not being followed, but this is not
our code, so it can be ignored.
This commit is contained in:
ISSOtm
2019-11-09 00:47:45 +01:00
parent 648df0dc7d
commit faa7893761
2 changed files with 6 additions and 6 deletions

View File

@@ -36,7 +36,7 @@ struct option {
int val;
};
int getopt_long_only(int, char *const *, const char *, const struct option *, int *);
int getopt_long_only(int, char **, const char *, const struct option *, int *);
#define no_argument 0
#define required_argument 1