소스 검색

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

Paul Eggert 26 년 전
부모
커밋
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);
       }
   }