diff options
author | thexai <58434170+thexai@users.noreply.github.com> | 2020-11-27 18:12:39 +0100 |
---|---|---|
committer | thexai <58434170+thexai@users.noreply.github.com> | 2020-11-27 18:14:55 +0100 |
commit | 18ef2e7ab0fee8eef3e6f9adf53d894a2a05d8ed (patch) | |
tree | 77d0712db603279d17ec2c54ee35c5e725c81e6c | |
parent | 22a7f1463cd563f418973f9aed788f093110020d (diff) |
[UWP] Fix typo in kernelVersionFull string
-rw-r--r-- | xbmc/utils/SystemInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/utils/SystemInfo.cpp b/xbmc/utils/SystemInfo.cpp index 10bcc90e6d..4a80960f70 100644 --- a/xbmc/utils/SystemInfo.cpp +++ b/xbmc/utils/SystemInfo.cpp @@ -554,7 +554,7 @@ std::string CSysInfo::GetKernelVersionFull(void) unsigned long long v4 = (v & 0x000000000000FFFFL); kernelVersionFull = StringUtils::Format("%lld.%lld.%lld", v1, v2, v3); if (v4) - kernelVersionFull += StringUtils::Format(".ll%d", v4); + kernelVersionFull += StringUtils::Format(".%lld", v4); #elif defined(TARGET_POSIX) struct utsname un; |