(update_archive): Fix typo: last two args to dump_file were interchanged.

This commit is contained in:
Paul Eggert
1999-10-11 06:56:17 +00:00
parent 51f0c7c364
commit a46a204436

View File

@@ -192,7 +192,7 @@ update_archive (void)
if (subcommand_option == CAT_SUBCOMMAND)
append_file (path);
else
dump_file (path, (dev_t) 0, 1);
dump_file (path, 1, (dev_t) 0);
}
}