Mercurial > emacs
diff src/regex.c @ 11865:5e83aee9e412
[REGEX_FREE]: Use ((void)0) instead of just (0).
| author | Jim Meyering <jim@meyering.net> |
|---|---|
| date | Sun, 21 May 1995 06:19:05 +0000 |
| parents | 620c7195b48f |
| children | 655dd1479452 |
line wrap: on
line diff
--- a/src/regex.c Sat May 20 16:40:11 1995 +0000 +++ b/src/regex.c Sun May 21 06:19:05 1995 +0000 @@ -243,7 +243,7 @@ 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 */
