diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-06-25 14:48:07 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-06-25 14:48:07 +0200 |
commit | b3903eedc787e459c2430e563ccab722efcb845d (patch) | |
tree | afca0a409e3c4b4c9cb041c1eeaef12f57f59b3a | |
parent | m (diff) | |
download | argparser-b3903eedc787e459c2430e563ccab722efcb845d.tar.gz argparser-b3903eedc787e459c2430e563ccab722efcb845d.tar.bz2 argparser-b3903eedc787e459c2430e563ccab722efcb845d.tar.xz |
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | src/argparser.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/argparser.c b/src/argparser.c index aa7bfe1..8472505 100644 --- a/src/argparser.c +++ b/src/argparser.c @@ -94,7 +94,7 @@ long args_program_dispose; /** * Short, single-line, description of the program */ -char* args_dscription; +char* args_description; /** * Formated, multi-line, usage text, `null` if none @@ -104,7 +104,7 @@ char* args_usage; /** * Long, multi-line, description of the program, `null` if none */ -char* args_longdscription; +char* args_longdescription; /** * The error output stream @@ -198,9 +198,9 @@ extern void args_init(char* description, char* usage, char* longdscription, char args_program = "?"; args_program_dispose = false; } - args_dscription = description; + args_description = description; args_usage = usage; - args_longdscription = longdescription; + args_longdescription = longdescription; args_out = usestderr ? stderr : stdout; args_arguments_count = args_unrecognised_count = args_files_count = 0; args_files = args_arguments = null; |