home · contact · privacy
Server: Minor data type fix.
[plomrogue] / src / client / draw_wins.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__);