X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fdelta%2Fdelta.c;h=2fdbeeae81e38c66b751a533301a6256e5d8a792;hb=76253e73f9c9c24fec755e485516f3b55d0707b4;hp=91f8592b40941d9729378eda932789a2f7092d5d;hpb=d5099efc47d4e6ac60816b5381a5f607ab03f06e;p=elogind.git diff --git a/src/delta/delta.c b/src/delta/delta.c index 91f8592b4..2fdbeeae8 100644 --- a/src/delta/delta.c +++ b/src/delta/delta.c @@ -159,7 +159,7 @@ static int notify_override_unchanged(const char *f) { static int found_override(const char *top, const char *bottom) { _cleanup_free_ char *dest = NULL; - int k; + int k, r; pid_t pid; assert(top); @@ -194,7 +194,9 @@ static int found_override(const char *top, const char *bottom) { _exit(1); } - wait_for_terminate(pid, NULL); + r = wait_for_terminate(pid, NULL); + if (r < 0) + log_warning("Failed to wait for diff: %s", strerror(-r)); putchar('\n');