Fix insufficiently parenthesized macro expansions.

This commit is contained in:
Markus Armbruster 2006-04-30 16:08:45 +00:00
parent cee8e126a2
commit a292d6f98a
16 changed files with 43 additions and 80 deletions

View file

@ -37,7 +37,7 @@
#include "misc.h"
#include "xy.h"
#define MAPWIDTH(persec) ((WORLD_X/2)*(persec + 1)+1)
#define MAPWIDTH(persec) ((WORLD_X/2) * ((persec) + 1) + 1)
extern void blankfill(char *, struct range *, int);
/* src/lib/subs/bigmap.c */