X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=device-src%2Fdvdrw-device.c;h=5bc0fc1e9885ab13e604c05c69762a4ec0dfd5c2;hb=c6f0a88c567f8536c498f554285aed1f8150da18;hp=128e05ff0d17694d226e478e3c2a77d35fdd8850;hpb=b116e9366c7b2ea2c2eb53b0a13df4090e176235;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 {