summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-10-10 21:53:28 +0000
committerJeremy Katz <katzj@redhat.com>2002-10-10 21:53:28 +0000
commit5a499d26306b806a28c02e16a28bd3b769024e0e (patch)
treea41c48d4c4f9dedf21aaec1740bd0ce736186430 /isys
parent6c4650d3b3e6818c831742baa91de8f94fa50501 (diff)
downloadanaconda-5a499d26306b806a28c02e16a28bd3b769024e0e.tar.gz
anaconda-5a499d26306b806a28c02e16a28bd3b769024e0e.tar.xz
anaconda-5a499d26306b806a28c02e16a28bd3b769024e0e.zip
too many (
Diffstat (limited to 'isys')
-rw-r--r--isys/devnodes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/devnodes.c b/isys/devnodes.c
index 3e01b63d6..e24b9e8c2 100644
--- a/isys/devnodes.c
+++ b/isys/devnodes.c
@@ -105,7 +105,7 @@ int devMakeInode(char * devName, char * path) {
type = S_IFBLK;
major = 7;
minor = atoi(devName + 4);
- } else if (!(strncmp(devName, "scd", 3)) {
+ } else if (!strncmp(devName, "scd", 3)) {
type = S_IFBLK;
major = 11;
minor = atoi(devName + 3);