diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-01-28 16:08:51 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-01-28 16:08:51 +0100 |
commit | a265f646cfe52b9cdeb60c3810c1ce2e88468dd4 (patch) | |
tree | 0694a4eb01240b16ab42cb5ad4571318566a36dd /utils | |
parent | e82a9d10e72feb2e5c8c47028556d37ef87ab2eb (diff) | |
download | hurd-a265f646cfe52b9cdeb60c3810c1ce2e88468dd4.tar.gz hurd-a265f646cfe52b9cdeb60c3810c1ce2e88468dd4.tar.bz2 hurd-a265f646cfe52b9cdeb60c3810c1ce2e88468dd4.zip |
Fix warnings
* utils/nullauth.c (argp_program_version, options, doc[], args_doc):
Drop duplicate const qualifier.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/nullauth.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/nullauth.c b/utils/nullauth.c index a0d5d1b8..603e0b1e 100644 --- a/utils/nullauth.c +++ b/utils/nullauth.c @@ -29,16 +29,16 @@ static char **args; -const char const *argp_program_version = STANDARD_HURD_VERSION (nullauth); +const char *argp_program_version = STANDARD_HURD_VERSION (nullauth); -static const struct argp_option const options[] = +static const struct argp_option options[] = { { 0 } }; -static const char const doc[] = +static const char doc[] = "Drop all authentication credentials and run the given program."; -static const char const args_doc[] = +static const char args_doc[] = "PROGRAM [ARGUMENTS...]\tThe program to run"; error_t |