diff options
author | Jim Meyering <jim@meyering.net> | 1995-05-21 06:19:05 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-05-21 06:19:05 +0000 |
commit | 03f2d7c00daa1e8e95ba951717e881b7a30823e1 (patch) | |
tree | aafbed7d6ac8683dfaed55dbf635b346637d83c8 | |
parent | 72d7735e28cb87c4514235188bdd78bd36ae0860 (diff) | |
download | gnulib-03f2d7c00daa1e8e95ba951717e881b7a30823e1.tar.gz |
[REGEX_FREE]: Use ((void)0) instead of just (0).
-rw-r--r-- | regex.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -243,7 +243,7 @@ char *alloca (); destination) /* No need to do anything to free, after alloca. */ -#define REGEX_FREE(arg) (0) +#define REGEX_FREE(arg) ((void)0) /* Do nothing! But inhibit gcc warning. */ #endif /* not REGEX_MALLOC */ |