]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix syntax error
authorFlorian Krohm <florian@eich-krohm.de>
Thu, 19 Jul 2012 18:16:49 +0000 (18:16 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Thu, 19 Jul 2012 18:16:49 +0000 (18:16 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12763

tests/s390x_features.c

index 670acb6c24c8ccd6ce80361b3b57d99c350a2677..f0fdb63462a1dfdb36ecbf9304e7b160a22f91a7 100644 (file)
@@ -215,7 +215,7 @@ static int go(char *feature, char *cpu)
    } else if (strcmp(feature, "s390x-exrl") == 0 ) {
      match = (facilities & (1ULL << 28));
    } else if (strcmp(feature, "s390x-etf3") == 0 ) {
-     match = (facilities & (1ULL << (63 - 30));
+     match = (facilities & (1ULL << (63 - 30)));
    } else {
      return 2;          // Unrecognised feature.
    }