|
From: <sv...@va...> - 2012-07-19 18:16:56
|
florian 2012-07-19 19:16:49 +0100 (Thu, 19 Jul 2012)
New Revision: 12763
Log:
Fix syntax error
Modified files:
trunk/tests/s390x_features.c
Modified: trunk/tests/s390x_features.c (+1 -1)
===================================================================
--- trunk/tests/s390x_features.c 2012-07-19 18:23:42 +01:00 (rev 12762)
+++ trunk/tests/s390x_features.c 2012-07-19 19:16:49 +01:00 (rev 12763)
@@ -215,7 +215,7 @@
} 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.
}
|