X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=device-src%2Fdvdrw-device.c;h=5bc0fc1e9885ab13e604c05c69762a4ec0dfd5c2;hb=refs%2Ftags%2Fupstream%2F3.3.1;hp=128e05ff0d17694d226e478e3c2a77d35fdd8850;hpb=cd0b924f27312d57bd42f6c4fae2b795139e2d0b;p=debian%2Famanda diff --git a/device-src/dvdrw-device.c b/device-src/dvdrw-device.c index 128e05f..5bc0fc1 100644 --- a/device-src/dvdrw-device.c +++ b/device-src/dvdrw-device.c @@ -690,7 +690,6 @@ execute_command(DvdRwDevice *self, gchar **argv, gint *result) gint errnum = 0; GError *error = NULL; gboolean success; - int signum = 0; /* g_debug("Executing: %s", argv[0]); */ @@ -701,7 +700,6 @@ execute_command(DvdRwDevice *self, gchar **argv, gint *result) if (WIFSIGNALED(errnum)) { success = FALSE; - signum = WTERMSIG(errnum); } else if (WIFEXITED(errnum)) { success = (WEXITSTATUS(errnum) == 0); } else {