Browse Source

Fixed clang warning: equality comparison with extraneous parentheses.

bkaradzic 11 years ago
parent
commit
c97cec7114
1 changed files with 1 additions and 1 deletions
  1. 1 1
      3rdparty/fcpp/cpp1.c

+ 1 - 1
3rdparty/fcpp/cpp1.c

@@ -289,7 +289,7 @@ ReturnCode cppmain(struct Global *global)
     unget(global);                      /* Reread the char.     */
     for (;;) {                          /* For the whole line,  */
       do {                              /* Token concat. loop   */
-	for (global->chpos = counter = 0; (type[(c = get(global))] == SPA);) {
+	for (global->chpos = counter = 0; type[(c = get(global))] == SPA;) {
 #if COMMENT_INVISIBLE
 	  if (c != COM_SEP)
 	    counter++;