about summary refs log tree commit diff
path: root/nptl/pt-fsync.c
diff options
context:
space:
mode:
Diffstat (limited to 'nptl/pt-fsync.c')
-rw-r--r--nptl/pt-fsync.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/nptl/pt-fsync.c b/nptl/pt-fsync.c
index 6c41912a7b..91fd266ed9 100644
--- a/nptl/pt-fsync.c
+++ b/nptl/pt-fsync.c
@@ -27,15 +27,12 @@
 int
 fsync (int fd)
 {
-  int oldtype;
-  int result;
-
-  CANCEL_ASYNC (oldtype);
+  int oldtype = CANCEL_ASYNC ();
 
 #ifdef INLINE_SYSCALL
-  result = INLINE_SYSCALL (fsync, 1, fd);
+  int result = INLINE_SYSCALL (fsync, 1, fd);
 #else
-  result = __libc_fsync (fd);
+  int result = __libc_fsync (fd);
 #endif
 
   CANCEL_RESET (oldtype);