1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

Minor comment fix.

This commit is contained in:
Lasse Collin 2010-01-26 14:46:43 +02:00
parent 0bc9eab243
commit d0b4bbf5da

View file

@ -143,7 +143,7 @@ main(int argc, char **argv)
message_init(); message_init();
// Set hardware-dependent default values. These can be overriden // 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(); hardware_init();
// Parse the command line arguments and get an array of filenames. // Parse the command line arguments and get an array of filenames.
@ -187,7 +187,7 @@ main(int argc, char **argv)
? &list_file : &coder_run; ? &list_file : &coder_run;
// Process the files given on the command line. Note that if no names // 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) { for (size_t i = 0; i < args.arg_count && !user_abort; ++i) {
if (strcmp("-", args.arg_names[i]) == 0) { if (strcmp("-", args.arg_names[i]) == 0) {
// Processing from stdin to stdout. Check that we // Processing from stdin to stdout. Check that we