[git commit] test: silence warning in skeleton

Bernhard Reutner-Fischer rep.dot.nop at gmail.com
Thu Mar 14 21:49:25 UTC 2013


commit: http://git.uclibc.org/uClibc/commit/?id=8b150a9491490fd4464de0f1228762c921dc7f64
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

Some tests use fd, rename the one in the skeleton.

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
 test/test-skeleton.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/test/test-skeleton.c b/test/test-skeleton.c
index 3eab1b8..6d4a8b6 100644
--- a/test/test-skeleton.c
+++ b/test/test-skeleton.c
@@ -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.  */


More information about the uClibc-cvs mailing list