瀏覽代碼

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

Paul Eggert 25 年之前
父節點
當前提交
a46a204436
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/update.c

+ 1 - 1
src/update.c

@@ -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);
       }
   }