diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-03 16:40:03 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-03 16:40:03 +0000 |
commit | fd3f0ae2eb3d54d08e1e42a7b715a312f9a9efda (patch) | |
tree | 0a685d47926ff3a1f65f64e909eb2c94e7b598ca | |
parent | b318f128c9ad9b063fab23e327dabb8d75800a49 (diff) | |
download | perl-fd3f0ae2eb3d54d08e1e42a7b715a312f9a9efda.tar.gz |
One less -Wall whine.
p4raw-id: //depot/perl@10406
-rw-r--r-- | regcomp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -429,7 +429,7 @@ static scan_data_t zero_scan_data = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* Allow for side effects in s */ -#define REGC(c,s) STMT_START { if (!SIZE_ONLY) *(s) = (c); else (s);} STMT_END +#define REGC(c,s) STMT_START { if (!SIZE_ONLY) *(s) = (c); else (void)(s);} STMT_END /* Macros for recording node offsets. 20001227 mjd@plover.com * Nodes are numbered 1, 2, 3, 4. Node #n's position is recorded in |