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/ipc.cc')
-rw-r--r--winsup/cygwin/ipc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/ipc.cc b/winsup/cygwin/ipc.cc
index 571ac8701..e670cdb2c 100644
--- a/winsup/cygwin/ipc.cc
+++ b/winsup/cygwin/ipc.cc
@@ -18,7 +18,7 @@ ftok (const char *path, int id)
{
struct stat statbuf;
key_t tmp;
- if (stat64 (path, &statbuf))
+ if (stat (path, &statbuf))
{
/* stat set the appropriate errno for us */
return (key_t) -1;