aboutsummaryrefslogtreecommitdiffstats
path: root/makewrappers
diff options
context:
space:
mode:
Diffstat (limited to 'makewrappers')
-rwxr-xr-xmakewrappers3
1 files changed, 2 insertions, 1 deletions
diff --git a/makewrappers b/makewrappers
index 8af65f1..e87cc56 100755
--- a/makewrappers
+++ b/makewrappers
@@ -305,7 +305,8 @@ class Function:
if self.async_skip:
return """/* This function is not called if pseudo is configured --enable-force-async */
#ifdef PSEUDO_FORCE_ASYNC
- return %s;
+ if (!pseudo_allow_fsync)
+ return %s;
#endif
""" % self.async_skip
else: