summaryrefslogtreecommitdiff
path: root/zen/sys_info.cpp
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-12-08 08:13:55 -0500
committerB Stack <bgstack15@gmail.com>2020-12-08 08:13:55 -0500
commitdae91af92db2b316cec2db17328e92306b915753 (patch)
tree8e5414c3b8a914f57a1d4dc92ee0e55ae1f6e9ee /zen/sys_info.cpp
parentMerge branch '11.3' into 'master' (diff)
downloadFreeFileSync-dae91af92db2b316cec2db17328e92306b915753.tar.gz
FreeFileSync-dae91af92db2b316cec2db17328e92306b915753.tar.bz2
FreeFileSync-dae91af92db2b316cec2db17328e92306b915753.zip
add upstream 11.4
Diffstat (limited to 'zen/sys_info.cpp')
-rw-r--r--zen/sys_info.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/sys_info.cpp b/zen/sys_info.cpp
index 475e1c6c..70658a68 100644
--- a/zen/sys_info.cpp
+++ b/zen/sys_info.cpp
@@ -63,7 +63,7 @@ ComputerModel zen::getComputerModel() //throw FileError
cm.vendor = tryGetInfo("/sys/devices/virtual/dmi/id/sys_vendor"); //
//clean up:
- cm.model = beforeFirst(cm.model , L'\u00ff', IfNotFoundReturn::all); //fix broken BIOS entries:
+ cm.model = beforeFirst(cm.model, L'\u00ff', IfNotFoundReturn::all); //fix broken BIOS entries:
cm.vendor = beforeFirst(cm.vendor, L'\u00ff', IfNotFoundReturn::all); //0xff can be considered 0
for (const char* dummyModel :
bgstack15