summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2003-06-26 03:17:22 +0000
committerBill Nottingham <notting@redhat.com>2003-06-26 03:17:22 +0000
commitfd9e9dd1620713a5b22326613fa2661fd4e9eb65 (patch)
tree9f6a19682564c64b7455e9b61030770aa71805e9 /isys
parent74a7f5735e1e8fe15ee2d69cd26e4c49ce5adcec (diff)
downloadanaconda-fd9e9dd1620713a5b22326613fa2661fd4e9eb65.tar.gz
anaconda-fd9e9dd1620713a5b22326613fa2661fd4e9eb65.tar.xz
anaconda-fd9e9dd1620713a5b22326613fa2661fd4e9eb65.zip
kill warning. also, fix it in case anyone decides to call it.
Diffstat (limited to 'isys')
-rw-r--r--isys/isys.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/isys/isys.c b/isys/isys.c
index 34f8b6f26..c0f529056 100644
--- a/isys/isys.c
+++ b/isys/isys.c
@@ -763,6 +763,8 @@ static PyObject * probedListSubscript(probedListObject * o, int item) {
class = "tape"; break;
case CLASS_NETWORK:
class = "net"; break;
+ case CLASS_FLOPPY:
+ class = "floppy"; break;
case CLASS_UNSPEC:
case CLASS_OTHER:
case CLASS_SCSI:
@@ -770,8 +772,6 @@ static PyObject * probedListSubscript(probedListObject * o, int item) {
case CLASS_AUDIO:
case CLASS_MOUSE:
case CLASS_MODEM:
- case CLASS_FLOPPY:
- class = "floppy"; break;
case CLASS_SCANNER:
case CLASS_RAID:
case CLASS_PRINTER:
@@ -781,6 +781,7 @@ static PyObject * probedListSubscript(probedListObject * o, int item) {
case CLASS_USB:
case CLASS_SOCKET:
case CLASS_FIREWIRE:
+ case CLASS_IDE:
break;
}