forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
11 lines
308 B
C
11 lines
308 B
C
--- asbutton.c.orig 1999-07-17 05:59:20.000000000 +0800
|
|
+++ asbutton.c 2007-08-03 18:13:09.000000000 +0800
|
|
@@ -605,7 +605,7 @@
|
|
continue;
|
|
}
|
|
if ( !strncasecmp(line, "button", 6))
|
|
- if (atoi(&(char)line[6]) == position)
|
|
+ if (atoi(line+6) == position)
|
|
break;
|
|
}
|
|
} while (1);
|