home · contact · privacy
Improved comments.
[plomrogue] / src / draw_wins.c
index 1b4f0ac4ae0fcea6f5c2ea4508abb4bb03eea5d3..cb640f0ed45c867a10e01f1138f67552b3634264 100644 (file)
@@ -211,7 +211,7 @@ extern void draw_info_win(struct Win * win)
     char * dsc_hitpoints = "\nHitpoints: ";
     char * dsc_score     = "\nScore: ";
     uint16_t maxl = strlen(dsc_turn) + strlen(dsc_hitpoints) + strlen(dsc_score)
-                    + 10 + 5 + 10; /* max strlens of numbers to be used */
+                    + 10 + 5 + 10;       /* max strlens of numbers to be used */
     char * text = malloc(maxl + 1);
     sprintf(text, "%s%d%s%d%s%d",
             dsc_turn, world->turn,