utils: Rename devname to devicename to avoid FreeBSD stdlib conflict
authorGregor Jasny <gjasny@googlemail.com>
Wed, 1 Feb 2012 17:41:31 +0000 (18:41 +0100)
committerGregor Jasny <gjasny@googlemail.com>
Sun, 5 Feb 2012 16:32:38 +0000 (17:32 +0100)
Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
utils/decode_tm6000/decode_tm6000.c
utils/keytable/keytable.c

index b2f0631..0d8710f 100644 (file)
@@ -44,7 +44,7 @@ const struct argp_option options[] = {
 static char outbuf[692224];
 static int debug=0, audio=0, use_mmap=1, nbufs=4;
 static float freq_mhz=193.25;
-static char *devname="/dev/video0";
+static char *devicename="/dev/video0";
 static char *filename=NULL;
 static enum {
        NORMAL,
@@ -69,7 +69,7 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state)
                debug++;
                break;
        case 'd':
-               devname=arg;
+               devicename=arg;
                break;
        case 'i':
        case 'o':
@@ -145,7 +145,7 @@ static int prepare_read (struct v4l2_driver *drv)
 
        memset (drv,0,sizeof(*drv));
 
-       if (v4l2_open (devname, 1,drv)<0) {
+       if (v4l2_open (devicename, 1,drv)<0) {
                perror ("Error opening dev");
                return -1;
        }
index a9119d7..cb03f2b 100644 (file)
@@ -141,7 +141,7 @@ static const char args_doc[] =
 
 /* Static vars to store the parameters */
 static char *devclass = "rc0";
-static char *devname = NULL;
+static char *devicename = NULL;
 static int readtable = 0;
 static int clear = 0;
 static int debug = 0;
@@ -387,7 +387,7 @@ static error_t parse_opt(int k, char *arg, struct argp_state *state)
                period = atoi(arg);
                break;
        case 'd':
-               devname = arg;
+               devicename = arg;
                break;
        case 's':
                devclass = arg;
@@ -1437,8 +1437,8 @@ int main(int argc, char *argv[])
 
        /* Just list all devices */
        if (!clear && !readtable && !keys.next && !ch_proto && !cfg.next && !test && !delay && !period) {
-               if (devname) {
-                       fd = open(devname, O_RDONLY);
+               if (devicename) {
+                       fd = open(devicename, O_RDONLY);
                        if (fd < 0) {
                                perror("Can't open device");
                                return -1;
@@ -1453,11 +1453,11 @@ int main(int argc, char *argv[])
                return 0;
        }
 
-       if (cfg.next && (clear || keys.next || ch_proto || devname)) {
+       if (cfg.next && (clear || keys.next || ch_proto || devicename)) {
                fprintf (stderr, "Auto-mode can be used only with --read, --debug and --sysdev options\n");
                return -1;
        }
-       if (!devname) {
+       if (!devicename) {
                names = find_device(devclass);
                if (!names)
                        return -1;
@@ -1469,7 +1469,7 @@ int main(int argc, char *argv[])
                names->name = NULL;
                free_names(names);
 
-               devname = rc_dev.input_name;
+               devicename = rc_dev.input_name;
                dev_from_class++;
        }
 
@@ -1513,14 +1513,14 @@ int main(int argc, char *argv[])
        }
 
        if (debug)
-               fprintf(stderr, "Opening %s\n", devname);
-       fd = open(devname, O_RDONLY);
+               fprintf(stderr, "Opening %s\n", devicename);
+       fd = open(devicename, O_RDONLY);
        if (fd < 0) {
-               perror(devname);
+               perror(devicename);
                return -1;
        }
        if (dev_from_class)
-               free(devname);
+               free(devicename);
        if (get_input_protocol_version(fd))
                return -1;