From: Florian Krohm Date: Thu, 19 Jul 2012 18:16:49 +0000 (+0000) Subject: Fix syntax error X-Git-Tag: svn/VALGRIND_3_8_0~105 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3bce85fd9f673c8a7082bcd557eb67818cba3566;p=thirdparty%2Fvalgrind.git Fix syntax error git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12763 --- diff --git a/tests/s390x_features.c b/tests/s390x_features.c index 670acb6c24..f0fdb63462 100644 --- a/tests/s390x_features.c +++ b/tests/s390x_features.c @@ -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. }