diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2010-01-26 14:46:43 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2010-01-26 14:46:43 +0200 |
commit | d0b4bbf5da068503c099cd456e294d7673548cc0 (patch) | |
tree | 285e98bc9e1139a8fb7be3c85e2bc365da50b14d | |
parent | Add initial version of xz --list. (diff) | |
download | xz-d0b4bbf5da068503c099cd456e294d7673548cc0.tar.xz |
Minor comment fix.
-rw-r--r-- | src/xz/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xz/main.c b/src/xz/main.c index a2681f23..05a1d66d 100644 --- a/src/xz/main.c +++ b/src/xz/main.c @@ -143,7 +143,7 @@ main(int argc, char **argv) message_init(); // Set hardware-dependent default values. These can be overriden - // on the command line, thus this must be done before parse_args(). + // on the command line, thus this must be done before args_parse(). hardware_init(); // Parse the command line arguments and get an array of filenames. @@ -187,7 +187,7 @@ main(int argc, char **argv) ? &list_file : &coder_run; // Process the files given on the command line. Note that if no names - // were given, parse_args() gave us a fake "-" filename. + // were given, args_parse() gave us a fake "-" filename. for (size_t i = 0; i < args.arg_count && !user_abort; ++i) { if (strcmp("-", args.arg_names[i]) == 0) { // Processing from stdin to stdout. Check that we |