From 1f13638d03d946989cd4e94ea61e744d4e700392 Mon Sep 17 00:00:00 2001 From: smatz Date: Sat, 15 Mar 2008 13:21:31 +0000 Subject: (svn r12368) -Codechange: use explicit body for loops and conditions and remove -Wno-empty-body from the configure script --- src/string_func.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/string_func.h') diff --git a/src/string_func.h b/src/string_func.h index 074dc0837..3a4303293 100644 --- a/src/string_func.h +++ b/src/string_func.h @@ -48,7 +48,7 @@ static inline bool StrEmpty(const char *s) { return s == NULL || s[0] == '\0'; } static inline int ttd_strnlen(const char *str, int maxlen) { const char *t; - for (t = str; *t != '\0' && t - str < maxlen; t++); + for (t = str; *t != '\0' && t - str < maxlen; t++) {} return t - str; } @@ -128,7 +128,7 @@ static inline bool IsUtf8Part(char c) static inline char *Utf8PrevChar(const char *s) { const char *ret = s; - while (IsUtf8Part(*--ret)); + while (IsUtf8Part(*--ret)) {} return (char*)ret; } -- cgit v1.2.3-54-g00ecf