From 889a8a6d425baf7c0208d2bbd62947e1062db8e7 Mon Sep 17 00:00:00 2001 From: Greg Ercolano Date: Fri, 19 Dec 2014 03:47:32 +0000 Subject: Fixes STR #3169, comments #4, #5 and #7. Prevents warnings from the OSX 10.9.x clang compiler. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10493 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- test/editor.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/editor.cxx') diff --git a/test/editor.cxx b/test/editor.cxx index 26cd1802a..e9a397e99 100644 --- a/test/editor.cxx +++ b/test/editor.cxx @@ -206,7 +206,9 @@ style_parse(const char *text, // Might be a keyword... for (temp = text, bufptr = buf; (islower((*temp)&255) || *temp == '_') && bufptr < (buf + sizeof(buf) - 1); - *bufptr++ = *temp++); + *bufptr++ = *temp++) { + // nothing + } if (!islower((*temp)&255) && *temp != '_') { *bufptr = '\0'; -- cgit v1.2.3