summaryrefslogtreecommitdiff
path: root/fluid/StyleParse.cxx
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2020-11-17 16:11:03 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2020-11-17 16:11:03 +0100
commit5cb72ef065f53d8f8759a6b6cccd35a2f367f290 (patch)
tree31c76e99f59639c2ca2a9443c4e5806cd163726c /fluid/StyleParse.cxx
parent2931c29689a91375e610a6a8bca28fe2b10b268f (diff)
Fix whitespace and minor formatting issues
Diffstat (limited to 'fluid/StyleParse.cxx')
-rw-r--r--fluid/StyleParse.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/fluid/StyleParse.cxx b/fluid/StyleParse.cxx
index abbb33fcf..5d0dd5e5d 100644
--- a/fluid/StyleParse.cxx
+++ b/fluid/StyleParse.cxx
@@ -206,7 +206,7 @@ void StyleParse::buffer_keyword() {
char *key = keyword;
char *kend = key + sizeof(keyword) - 1; // end of buffer
for ( const char *s=tbuff;
- (islower(*s) || *s=='_') && (key < kend);
+ (islower(*s) || *s=='_') && (key < kend);
*key++ = *s++ ) { }
*key = 0; // terminate
}