summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2009-03-31 11:07:29 -1000
committerDavid Cantrell <dcantrell@redhat.com>2009-03-31 11:13:00 -1000
commit3154d6cdbdcfef5373ab40fa6c08b607d4d2004d (patch)
treeb9c103629a4ed09a257b61d06ad8aa20b7714a0e /isys
parentc96156e391e6eb9793887cec8e71ddcaac55af6f (diff)
downloadanaconda-3154d6cdbdcfef5373ab40fa6c08b607d4d2004d.tar.gz
anaconda-3154d6cdbdcfef5373ab40fa6c08b607d4d2004d.tar.xz
anaconda-3154d6cdbdcfef5373ab40fa6c08b607d4d2004d.zip
Revert "Work around gcc bug #492973"
This reverts commit 5a0189827c1c6db21ecbfd01f00ee1f5edbb7a77. gcc-4.4.0-0.31 in rawhide fixes the problem we were seeing.
Diffstat (limited to 'isys')
-rw-r--r--isys/eddsupport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/eddsupport.c b/isys/eddsupport.c
index 242021a2e..ae974c565 100644
--- a/isys/eddsupport.c
+++ b/isys/eddsupport.c
@@ -168,7 +168,7 @@ static int mapBiosDisks(struct device** devices,const char *path) {
}
while ((entry = readdir(dirHandle)) != NULL) {
- if(!(strncmp)(entry->d_name,".",1) || !(strncmp)(entry->d_name,"..",2)) {
+ if(!strncmp(entry->d_name,".",1) || !strncmp(entry->d_name,"..",2)) {
continue;
}
ret = sscanf((entry->d_name+9), "%x", &biosNum);