aboutsummaryrefslogtreecommitdiff
path: root/libLumina/LuminaOS-Gentoo.cpp
diff options
context:
space:
mode:
authorRubin Simons <rubin.simons@raaftech.com>2016-03-24 14:52:19 +0100
committerRubin Simons <rubin.simons@raaftech.com>2016-03-24 14:52:19 +0100
commit9c04ba2043d4eb5cfe6247773cfdc114dc55e3ac (patch)
tree0803844c8af9767e3ae582ab5f9c2436b149e2c0 /libLumina/LuminaOS-Gentoo.cpp
parentBut still, it's nice to have a Categories in there because #183 (diff)
downloadlumina-9c04ba2043d4eb5cfe6247773cfdc114dc55e3ac.tar.gz
lumina-9c04ba2043d4eb5cfe6247773cfdc114dc55e3ac.tar.bz2
lumina-9c04ba2043d4eb5cfe6247773cfdc114dc55e3ac.zip
Typo in linux operating system classes fixed.
Diffstat (limited to 'libLumina/LuminaOS-Gentoo.cpp')
-rw-r--r--libLumina/LuminaOS-Gentoo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libLumina/LuminaOS-Gentoo.cpp b/libLumina/LuminaOS-Gentoo.cpp
index 4029ee51..e3d5fe56 100644
--- a/libLumina/LuminaOS-Gentoo.cpp
+++ b/libLumina/LuminaOS-Gentoo.cpp
@@ -40,7 +40,7 @@ QStringList LOS::ExternalDevicePaths(){
QString type = devs[i].section(" on ",0,0);
type.remove("/dev/");
//Determine the type of hardware device based on the dev node
- if(type.startsWith("sd") || type.startsWith("nvme"){ type = "HDRIVE"; }
+ if(type.startsWith("sd") || type.startsWith("nvme")){ type = "HDRIVE"; }
else if(type.startsWith("sr")){ type="DVD"; }
else if(type.contains("mapper")){ type="LVM"; }
else{ type = "UNKNOWN"; }
bgstack15