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:
authorCorinna Vinschen <corinna@vinschen.de>2005-02-23 20:59:04 +0300
committerCorinna Vinschen <corinna@vinschen.de>2005-02-23 20:59:04 +0300
commit3a021c19f42cfcbc585de089966c279e665592bc (patch)
tree28cbe0452f98142b09589ddf4d584d9ad3c7c7c9
parent6015cf9fc3fa74d8c6f269b45350d6935ac7f7d3 (diff)
* devices.in (parsedisk): Fix typo.
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/devices.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 4e77c597e..f1ac0877e 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2005-02-23 Eric Blake <ebb9@byu.net>
+
+ * devices.in (parsedisk): Fix typo.
+
2005-02-23 Corinna Vinschen <corinna@vinschen.de>
* cygwin.din (getpeereid): Export.
diff --git a/winsup/cygwin/devices.in b/winsup/cygwin/devices.in
index 31a84e23a..05c551655 100644
--- a/winsup/cygwin/devices.in
+++ b/winsup/cygwin/devices.in
@@ -140,7 +140,7 @@ device::parsedisk (int drive, int part)
else
{
base = DEV_SD1_MAJOR;
- drive -= 'q' - 'q';
+ drive -= 'q' - 'a';
}
parse (base, part + (drive * 16));
}