diff options
author | James Cloos <cloos@jhcloos.com> | 2008-11-08 12:18:13 -0500 |
---|---|---|
committer | James Cloos <cloos@jhcloos.com> | 2008-11-08 12:21:20 -0500 |
commit | b3c7e62664457a3802ebc23785446051624a8c2f (patch) | |
tree | ee5b7c80a614aca1f52fb8b0efb12d3689d7c767 /hw/xfree86/parser/scan.c | |
parent | 21c116219cd5c6845a0955f2d88fdb5fab5c17cf (diff) |
Remove some null statements.
Remove several doubled statement-terminal semicolons.
Reported by Fernando Carrijo.
Diffstat (limited to 'hw/xfree86/parser/scan.c')
-rw-r--r-- | hw/xfree86/parser/scan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/parser/scan.c b/hw/xfree86/parser/scan.c index 0ed104d58..7f10c0daa 100644 --- a/hw/xfree86/parser/scan.c +++ b/hw/xfree86/parser/scan.c @@ -435,7 +435,7 @@ again: i = 0; do { - configRBuf[++i] = (c = configBuf[configPos++]);; + configRBuf[++i] = (c = configBuf[configPos++]); } while ((c != ' ') && (c != '\t') && (c != '\n') && (c != '\r') && (c != '\0') && (c != '#')); --configPos; |