Use brackets in DEL macro

This commit is contained in:
Nikos Mavrogiannopoulos
2014-02-05 09:56:06 +01:00
parent eb5f78c748
commit 638228e284

View File

@@ -562,7 +562,7 @@ int cmd_parser (int argc, char **argv, struct cfg_st* config)
}
#define DEL(x) free(x);x=NULL
#define DEL(x) {free(x);x=NULL;}
void clear_cfg_file(struct cfg_st* config)
{
unsigned i;