Changeset 768

Show
Ignore:
Timestamp:
03/12/08 17:06:49 (7 months ago)
Author:
takkaria
Message:

Fix up the way z-virt.h does FREE()ing to make it a little more C++-friendly.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/z-virt.h

    r346 r768  
    8585 
    8686/* Free one thing at P, return NULL */ 
    87 #define FREE(P) (P = mem_free(P)
     87#define FREE(P) (mem_free(P), P = NULL
    8888 
    8989