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 | c2e1680ae1f00140d35bf3684494771697aca07b (patch) | |
tree | cdeab246c1ade90f13a05dc6fcb1fd9d57628d31 /src/regex.c | |
parent | fa9a63c5c25233d6758d38a5f6a6c3202af41345 (diff) | |
download | emacs-c2e1680ae1f00140d35bf3684494771697aca07b.tar.gz |
[REGEX_FREE]: Use ((void)0) instead of just (0).
Diffstat (limited to 'src/regex.c')
-rw-r--r-- | src/regex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex.c b/src/regex.c index 5a6d3a157dc..5a98c6c21aa 100644 --- a/src/regex.c +++ b/src/regex.c @@ -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 */ |