Use NULL instead of (FOO *)0, it's easier to read.
This commit is contained in:
parent
3252f8a907
commit
21bf6b41d4
23 changed files with 75 additions and 79 deletions
|
@ -117,8 +117,8 @@ int dy[6] = { 0, -1, -1, 0, 1, 1 };
|
|||
* would be slow. And, since world size only changes at init
|
||||
* time, we can do this safely.
|
||||
*/
|
||||
static unsigned int *mapbuf = (unsigned int *)0;
|
||||
static unsigned int **mapindex = (unsigned int **)0;
|
||||
static unsigned int *mapbuf;
|
||||
static unsigned int **mapindex;
|
||||
|
||||
s_char *
|
||||
bestownedpath(s_char *bpath,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue