diff options
-rw-r--r-- | externaleditor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/externaleditor.c b/externaleditor.c index 665291c..88382e7 100644 --- a/externaleditor.c +++ b/externaleditor.c @@ -118,7 +118,7 @@ open_external_editor_cb (gpointer data) /* Check if child has terminated */ rv = waitpid(args->child_pid, &status, WNOHANG); - if (rv == -1 || WIFEXITED(status)) { + if (rv == -1 /* || WIFEXITED(status) */) { /* Delete the file */ unlink(args->path); |