OSDN Git Service

test: silence warning in skeleton
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Sat, 23 Feb 2013 09:06:32 +0000 (10:06 +0100)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 14 Mar 2013 21:49:25 +0000 (22:49 +0100)
Some tests use fd, rename the one in the skeleton.

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
test/test-skeleton.c

index 3eab1b8..6d4a8b6 100644 (file)
@@ -103,7 +103,7 @@ __attribute__ ((unused))
 create_temp_file (const char *base, char **filename)
 {
   char *fname;
-  int fd;
+  int _fd;
 
   fname = (char *) malloc (strlen (test_dir) + 1 + strlen (base)
                           + sizeof ("XXXXXX"));
@@ -114,8 +114,8 @@ create_temp_file (const char *base, char **filename)
     }
   strcpy (stpcpy (stpcpy (stpcpy (fname, test_dir), "/"), base), "XXXXXX");
 
-  fd = mkstemp (fname);
-  if (fd == -1)
+  _fd = mkstemp (fname);
+  if (_fd == -1)
     {
       printf ("cannot open temporary file '%s': %s\n", fname, strerror(errno));
       free (fname);
@@ -126,7 +126,7 @@ create_temp_file (const char *base, char **filename)
   if (filename != NULL)
     *filename = fname;
 
-  return fd;
+  return _fd;
 }
 
 /* Timeout handler.  We kill the child and exit with an error.  */