Displaying 1 result from an estimated 1 matches for "a1cf3dc".
Did you mean:
d21cf3dc
2016 Apr 04
2
[PATCH 1/2] Use 'error' function consistently throughout.
...AILURE, errno, "system: %s", command);
if ((WIFEXITED (r) && WEXITSTATUS (r) != 0) || !WIFEXITED (r)) {
fprintf (stderr, "%s: %s: unexpected failure of external command\n",
guestfs_int_program_name, stage);
diff --git a/p2v/main.c b/p2v/main.c
index a1cf3dc..abec9bf 100644
--- a/p2v/main.c
+++ b/p2v/main.c
@@ -26,6 +26,7 @@
#include <getopt.h>
#include <fcntl.h>
#include <errno.h>
+#include <error.h>
#include <dirent.h>
#include <locale.h>
#include <libintl.h>
@@ -228,10 +229,8 @@ set_config_defaults (st...