diff options
| author | Jan Sucan <jan@jansucan.com> | 2020-12-21 20:11:29 +0100 |
|---|---|---|
| committer | Jan Sucan <jan@jansucan.com> | 2020-12-21 20:11:29 +0100 |
| commit | 7ed1ec2d24a755fbdcf285ca7cdd367e5fb1c929 (patch) | |
| tree | 440a4ee3de5b9d22f50302d54d7c7dddfcba50b4 | |
| parent | 937167fb808f9094e24144ebe95c6ade31f257f2 (diff) | |
Fix use of const qualifier
| -rw-r--r-- | options.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -11,7 +11,7 @@ #define OPTIONS_DEFAULT_BUFFER_SIZE (4 * 1024 * 1024) void options_init(options_t * const opts); -int options_parse_unsigned(const char const * arg, uint32_t * const value); +int options_parse_unsigned(const char * const arg, uint32_t * const value); int options_parse(int argc, char ** argv, options_t * const opts) @@ -106,7 +106,7 @@ options_init(options_t * const opts) } int -options_parse_unsigned(const char const * arg, uint32_t * const value) +options_parse_unsigned(const char * const arg, uint32_t * const value) { char * end; |
