From 3154d6cdbdcfef5373ab40fa6c08b607d4d2004d Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Tue, 31 Mar 2009 11:07:29 -1000 Subject: Revert "Work around gcc bug #492973" This reverts commit 5a0189827c1c6db21ecbfd01f00ee1f5edbb7a77. gcc-4.4.0-0.31 in rawhide fixes the problem we were seeing. --- isys/eddsupport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'isys') 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); -- cgit