Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/mmap.cc')
-rw-r--r--winsup/cygwin/mmap.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/mmap.cc b/winsup/cygwin/mmap.cc
index 7cc44fd22..afbeb7a3a 100644
--- a/winsup/cygwin/mmap.cc
+++ b/winsup/cygwin/mmap.cc
@@ -1244,7 +1244,7 @@ msync (void *addr, size_t len, int flags)
out:
LIST_UNLOCK ();
- syscall_printf ("%d = msync()", ret);
+ syscall_printf ("%R = msync()", ret);
return ret;
}
@@ -1337,7 +1337,7 @@ mprotect (void *addr, size_t len, int prot)
out:
- syscall_printf ("%d = mprotect ()", ret ? 0 : -1);
+ syscall_printf ("%R = mprotect ()", ret ? 0 : -1);
return ret ? 0 : -1;
}