aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xbmc/utils/SystemInfo.cpp2
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;