From 9c04ba2043d4eb5cfe6247773cfdc114dc55e3ac Mon Sep 17 00:00:00 2001 From: Rubin Simons Date: Thu, 24 Mar 2016 14:52:19 +0100 Subject: Typo in linux operating system classes fixed. --- libLumina/LuminaOS-Gentoo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libLumina/LuminaOS-Gentoo.cpp') 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"; } -- cgit