aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCrystalP <CrystalP@xbmc.org>2011-01-06 20:30:17 -0500
committerCrystalP <CrystalP@xbmc.org>2011-01-06 20:30:17 -0500
commit1c5bfa4b2bea45f35daa6332dce9418a63a43273 (patch)
tree53a73463fe6b466d3c83855dc0cd1b5077c2d566
parent569648f2a3b8e094c33d102edd41397ca04b07be (diff)
[WIN32] fix build after the git rev number change. Doesn't report the proper git commit yet.
-rw-r--r--xbmc/Application.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/Application.cpp b/xbmc/Application.cpp
index cbef7ba784..6d1ca5129c 100644
--- a/xbmc/Application.cpp
+++ b/xbmc/Application.cpp
@@ -503,7 +503,7 @@ bool CApplication::Create()
#elif defined(_LINUX)
CLog::Log(LOGNOTICE, "Starting XBMC, Platform: Linux (%s, %s). Built on %s (Git:%s)", g_sysinfo.GetLinuxDistro().c_str(), g_sysinfo.GetUnameVersion().c_str(), __DATE__, GIT_REV);
#elif defined(_WIN32)
- CLog::Log(LOGNOTICE, "Starting XBMC, Platform: %s. Built on %s (SVN:%s, compiler %i)",g_sysinfo.GetKernelVersion().c_str(), __DATE__, SVN_REV, _MSC_VER);
+ CLog::Log(LOGNOTICE, "Starting XBMC, Platform: %s. Built on %s (Git:%s, compiler %i)",g_sysinfo.GetKernelVersion().c_str(), __DATE__, GIT_REV, _MSC_VER);
CLog::Log(LOGNOTICE, g_cpuInfo.getCPUModel().c_str());
CLog::Log(LOGNOTICE, CWIN32Util::GetResInfoString());
CLog::Log(LOGNOTICE, "Running with %s rights", (CWIN32Util::IsCurrentUserLocalAdministrator() == TRUE) ? "administrator" : "restricted");