diff options
author | Wayne Davison <wayned@samba.org> | 2009-11-07 09:46:20 -0800 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2009-11-07 09:46:20 -0800 |
commit | 2907af472d1f33b3c422cb9f601c121b242aa9c7 (patch) | |
tree | ea8a3097ae60ccc6c87342cdd8ffe1fff761bc8e /log.c | |
parent | 8346c62a95d601f2516059cccb4784fe36fe3e9d (diff) | |
download | rsync-2907af472d1f33b3c422cb9f601c121b242aa9c7.tar.gz rsync-2907af472d1f33b3c422cb9f601c121b242aa9c7.tar.bz2 rsync-2907af472d1f33b3c422cb9f601c121b242aa9c7.zip |
Try to silence some warnings from "checker".
Diffstat (limited to 'log.c')
-rw-r--r-- | log.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -804,7 +804,7 @@ int log_format_has(const char *format, char esc) return 0; for (p = format; (p = strchr(p, '%')) != NULL; ) { - for (p++; *p == '\''; p++) {} + for (p++; *p == '\''; p++) {} /*SHARED ITERATOR*/ if (*p == '-') p++; while (isDigit(p)) |