commit | 9eba36b7267ed6a890af37f4e70934d62ec220a7 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue Dec 03 00:51:09 2013 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Tue Dec 03 00:51:09 2013 +0100 |
tree | 61459ddde664b9e4e8321dd022e7b46816e8b21a | |
parent | 60e0838f60bb941b61b1ed596027a8d70d9de8ba [diff] |
BUILD: log: silent a warning about isblank() with latest patches Recent commit 06d97f9 (MEDIUM: log-format: relax parsing of '%' followed by unsupported characters) caused the following warning on some compilers since isblank is not always present : src/log.c: In function 'parse_logformat_string': src/log.c:453: warning: implicit declaration of function 'isblank' As usual, replace it with the two values (space and tab).