* --pedantic cleanup.
[citadel.git] / webcit / utils.c
index 78b6b8c25499fd6608537ac97981f0c6bef8883c..c2a4c02fa424f99d5fc5b36c9bc4c24d8891c922 100644 (file)
@@ -15,7 +15,7 @@
  */
 long unescape_input(char *buf)
 {
-       int a, b;
+       unsigned int a, b;
        char hex[3];
        long buflen;
        long len;
@@ -71,7 +71,7 @@ long stresc(char *target, long tSize, char *strbuf, int nbsp, int nolinebreaks)
         *target = '\0';
         aptr = strbuf;
         bptr = target;
-        eptr = target + tSize - 6; // our biggest unit to put in... 
+        eptr = target + tSize - 6; /* our biggest unit to put in...  */
  
  
         while ((bptr < eptr) && !IsEmptyStr(aptr) ){