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
commit9fcd90e36cf2ae981199ea185566c71f5742a5c9 (patch)
tree40744661a128ae89e304200680fdca0d24906bbf /misc.c
parent83ce81fcaa2f2c80446d96892b626b19564bdc8d (diff)
downloadgunmake-9fcd90e36cf2ae981199ea185566c71f5742a5c9.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 607e2a7..7b5beb5 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;