diff options
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/path.cc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index b66ff22..ca94612 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +Tue Apr 17 18:50:00 2001 Corinna Vinschen <corinna@vinschen.de> + + * path.cc (windows_device_names): Add missing NULL element. + Tue Apr 17 12:14:54 2001 Christopher Faylor <cgf@cygnus.com> * path.cc (windows_device_names): Move dsp to proper location. diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc index 3947eaa..7992a89 100644 --- a/winsup/cygwin/path.cc +++ b/winsup/cygwin/path.cc @@ -543,7 +543,7 @@ const char *windows_device_names[] = "\\dev\\socket", "\\dev\\windows", - NULL, NULL, + NULL, NULL, NULL, "\\dev\\disk", "\\dev\\fd%d", |