Explorar el Código

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

Paul Eggert hace 25 años
padre
commit
a46a204436
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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);
       }
   }