summaryrefslogtreecommitdiffstats
path: root/isys/eddsupport.c
diff options
context:
space:
mode:
Diffstat (limited to 'isys/eddsupport.c')
-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);