diff options
author | Bill Nottingham <notting@redhat.com> | 2003-06-26 03:17:22 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2003-06-26 03:17:22 +0000 |
commit | fd9e9dd1620713a5b22326613fa2661fd4e9eb65 (patch) | |
tree | 9f6a19682564c64b7455e9b61030770aa71805e9 /isys | |
parent | 74a7f5735e1e8fe15ee2d69cd26e4c49ce5adcec (diff) | |
download | anaconda-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.c | 5 |
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; } |