home · contact · privacy
Server: Minor data type fix.
authorChristian Heller <c.heller@plomlompom.de>
Thu, 13 Nov 2014 20:47:06 +0000 (21:47 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Thu, 13 Nov 2014 20:47:06 +0000 (21:47 +0100)
src/client/draw_wins.c
src/server/run.c

index 1a3c9ad16c1c392963fc62401e3253a7fc89c4d1..5b876462837ed398b40c5fc329387ef82e393f31 100644 (file)
@@ -325,7 +325,7 @@ static char * winconf_geom_helper(struct Win * win, char axis, char * sep,
     }
     char * p11 = ")";
     uint8_t size =   strlen(p0) + strlen(p1) + strlen(p2) + strlen(sep)
-                   + strlen(p4) + strlen(sep) + strlen(p6) + strlen(value_prefix)
+                   + strlen(p4) + strlen(sep) + strlen(p6) +strlen(value_prefix)
                    + strlen(p8) + strlen(p9) + strlen(p10) + strlen(p11)
                    + strlen(newlines);
     char * msg = try_malloc(size, __func__);
index 708bd961ba89dd62847aa35f0f5711c5ef010319..ea8d608dd4c5003ea142ce77c7bb630ee3503064 100644 (file)
@@ -236,7 +236,7 @@ static int16_t * build_whitelist()
 
 static uint8_t thing_in_whitelist(uint8_t id, int16_t * whitelist)
 {
-    int16_t i;
+    uint16_t i;
     for (i = 0; -1 < whitelist[i]; i++)
     {
         if ((int16_t) id == whitelist[i])