diff options
author | David Cantrell <dcantrell@redhat.com> | 2009-03-31 11:07:29 -1000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2009-03-31 11:13:00 -1000 |
commit | 3154d6cdbdcfef5373ab40fa6c08b607d4d2004d (patch) | |
tree | b9c103629a4ed09a257b61d06ad8aa20b7714a0e /loader/getparts.c | |
parent | c96156e391e6eb9793887cec8e71ddcaac55af6f (diff) | |
download | anaconda-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 'loader/getparts.c')
-rw-r--r-- | loader/getparts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/getparts.c b/loader/getparts.c index 69072291e..8d2b7c4c6 100644 --- a/loader/getparts.c +++ b/loader/getparts.c @@ -94,7 +94,7 @@ char **getPartitionsList(char * disk) { break; } else if (toknum == 2) { /* if size is exactly 1 then ignore it as an extended */ - if (!(strcmp)(b, "1")) + if (!strcmp(b, "1")) break; } else if (toknum == 3) { /* this should be the partition name */ |