Imported Upstream version 3.3.1
[debian/amanda] / device-src / dvdrw-device.c
index 128e05ff0d17694d226e478e3c2a77d35fdd8850..5bc0fc1e9885ab13e604c05c69762a4ec0dfd5c2 100644 (file)
@@ -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 {