dpctl: Get rid of effectively unused variable.

This commit is contained in:
Ben Pfaff
2008-07-22 13:33:02 -07:00
parent 61df6c4639
commit 685ac1fe5a
+1 -2
View File
@@ -127,10 +127,9 @@ parse_options(int argc, char *argv[])
for (;;) {
unsigned long int timeout;
int indexptr;
int c;
c = getopt_long(argc, argv, short_options, long_options, &indexptr);
c = getopt_long(argc, argv, short_options, long_options, NULL);
if (c == -1) {
break;
}