]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix somewhat dubious-look parentheses (I'm sure it was OK, but still
authorJulian Seward <jseward@acm.org>
Sun, 30 Jan 2005 19:51:00 +0000 (19:51 +0000)
committerJulian Seward <jseward@acm.org>
Sun, 30 Jan 2005 19:51:00 +0000 (19:51 +0000)
...)

git-svn-id: svn://svn.valgrind.org/vex/trunk@778

VEX/priv/main/vex_util.c

index 5fe1b35664f85e376909344f32feaa7fa422c6db..3cac891ad22e3c5bff286d7cba9a4ccc93177d8e 100644 (file)
@@ -286,7 +286,7 @@ myvprintf_int64 ( void(*send)(Char), Int flags, Int base, Int width, ULong p)
       buf[ind++] = '0';
    else {
       while (p > 0) {
-         if (flags & VG_MSG_COMMA && 10 == base &&
+         if ((flags & VG_MSG_COMMA) && 10 == base &&
              0 == (ind-nc) % 3 && 0 != ind) 
          {
             buf[ind++] = ',';