summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2011-11-14 02:26:00 +0000
committerPaul Smith <psmith@gnu.org>2011-11-14 02:26:00 +0000
commit6ee30c3fdb6cdefe465b2a8a96fba12c6e3f3055 (patch)
tree40744661a128ae89e304200680fdca0d24906bbf /misc.c
parentcbec8e31048718ab515e939680598361349bf78f (diff)
downloadmake-6ee30c3fdb6cdefe465b2a8a96fba12c6e3f3055.tar.gz
Changes to resolve warnings.
Fixes Savannah bug #34608.
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc.c b/misc.c
index 607e2a7e..7b5beb5e 100644
--- a/misc.c
+++ b/misc.c
@@ -171,7 +171,7 @@ concat (num, va_alist)
{
static unsigned int rlen = 0;
static char *result = NULL;
- int ri = 0;
+ unsigned int ri = 0;
#if USE_VARIADIC
va_list args;