applied new kernel API (*flags* -> *cflags*, *_context -> ctx_*)
[util-vserver.git] / util-vserver / ensc_wrappers / wrappers_handler.hc
index e7370b4..b89baf7 100644 (file)
@@ -44,6 +44,6 @@ FatalErrnoErrorFail(char const msg[])
 static UNUSED void 
 FatalErrnoError(bool condition, char const msg[]) /*@*/
 {
-  if (!condition)       return;
+  if (__builtin_expect(!condition,true))       return;
   FatalErrnoErrorFail(msg);
 }