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:
authorDanny Smith <dannysmith@users.sourceforge.net>2002-10-20 08:35:58 +0400
committerDanny Smith <dannysmith@users.sourceforge.net>2002-10-20 08:35:58 +0400
commitaab9ff2a5eb2ed719c4066906da293eb51a4fe3a (patch)
tree7bc916aa2d525998adcf895f2f3e1d8fa5c79400
parent1c00ad29b8186d3462261dfbddaa30f89591edc0 (diff)
2002-10-19 Kang Li <rubylith@users.sourceforge.net>
* include/fcntl.h (O_SEQUENTIAL): Correct typo.
-rw-r--r--winsup/mingw/ChangeLog4
-rw-r--r--winsup/mingw/include/fcntl.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog
index 5441ced37..9eb37b32b 100644
--- a/winsup/mingw/ChangeLog
+++ b/winsup/mingw/ChangeLog
@@ -1,3 +1,7 @@
+2002-10-19 Kang Li <rubylith@users.sourceforge.net>
+
+ * include/fcntl.h (O_SEQUENTIAL): Correct typo.
+
2002-10-19 Danny Smith <dannysmith@users.sourceforge.net>
* crt1.c: Define new macro __IN_MINGW_RUNTIME before including
diff --git a/winsup/mingw/include/fcntl.h b/winsup/mingw/include/fcntl.h
index add43ff0e..ce193295b 100644
--- a/winsup/mingw/include/fcntl.h
+++ b/winsup/mingw/include/fcntl.h
@@ -80,7 +80,7 @@
#define O_BINARY _O_BINARY
#define O_TEMPORARY _O_TEMPORARY
#define O_NOINHERIT _O_NOINHERIT
-#define O_SEQENTIAL _O_SEQUENTIAL
+#define O_SEQUENTIAL _O_SEQUENTIAL
#define O_RANDOM _O_RANDOM
#endif /* Not _NO_OLDNAMES */