Eliminate unnecessary variable
authorPanu Matilainen <pmatilai@redhat.com>
Wed, 16 Jul 2008 07:24:05 +0000 (10:24 +0300)
committerPanu Matilainen <pmatilai@redhat.com>
Wed, 16 Jul 2008 07:24:05 +0000 (10:24 +0300)
- leftover from static buffer times..

rpmio/macro.c

index cc0638a..881f897 100644 (file)
@@ -1574,7 +1574,7 @@ rpmExpand(const char *arg, ...)
 {
     size_t blen = MACROBUFSIZ;
     char *buf = NULL;
-    char *p, *pe, *res;
+    char *p, *pe;
     const char *s;
     va_list ap;
 
@@ -1595,8 +1595,7 @@ rpmExpand(const char *arg, ...)
     (void) expandMacros(NULL, NULL, buf, blen);
 
 exit:
-    res = buf;
-    return res;
+    return buf;
 }
 
 int