diff mcabber/src/utils.c @ 735:2f027806cd48

Some code cleanup This patch will kill a few pedantic warnings
author Mikael Berthe <mikael@lilotux.net>
date Thu, 09 Mar 2006 20:15:37 +0100
parents 1c3620668857
children dd860da62002
line wrap: on
line diff
--- a/mcabber/src/utils.c	Thu Mar 09 19:40:00 2006 +0100
+++ b/mcabber/src/utils.c	Thu Mar 09 20:15:37 2006 +0100
@@ -150,7 +150,7 @@
 {
   static const char *tmpdir;
   const char *tmpvars[] = { "MCABBERTMPDIR", "TMP", "TMPDIR", "TEMP" };
-  int i;
+  unsigned int i;
 
   if (tmpdir)
     return tmpdir;
@@ -394,7 +394,7 @@
 {
   char **arglst;
   const char *p, *start, *end;
-  int i = 0;
+  unsigned int i = 0;
   int instring = FALSE;
   int escape = FALSE;