diff options
author | davilla <davilla@4pi.com> | 2011-10-23 15:28:11 -0400 |
---|---|---|
committer | davilla <davilla@4pi.com> | 2011-10-23 15:28:11 -0400 |
commit | c9eeb858d6bbe05d6fc8ac8b8ede6d9322c6a1ff (patch) | |
tree | 8ebbf9b2de9941bce76010a932d33592076c1eca | |
parent | 9358f7f9a2f78a4af2579c6199deeb6288e3b8f7 (diff) |
fixed, teach me to eat my own dogfood
-rw-r--r-- | xbmc/Application.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/Application.cpp b/xbmc/Application.cpp index 15fe093895..76f74fd1f0 100644 --- a/xbmc/Application.cpp +++ b/xbmc/Application.cpp @@ -509,7 +509,7 @@ bool CApplication::Create() CLog::Log(LOGNOTICE, "-----------------------------------------------------------------------"); #if defined(TARGET_DARWIN_OSX) CLog::Log(LOGNOTICE, "Starting XBMC, Platform: Darwin OSX (%s). Built on %s (Git:%s)", g_sysinfo.GetUnameVersion().c_str(), __DATE__, GIT_REV); -#if defined(TARGET_DARWIN_IOS) +#elif defined(TARGET_DARWIN_IOS) CLog::Log(LOGNOTICE, "Starting XBMC, Platform: Darwin iOS (%s). Built on %s (Git:%s)", g_sysinfo.GetUnameVersion().c_str(), __DATE__, GIT_REV); #elif defined(__FreeBSD__) CLog::Log(LOGNOTICE, "Starting XBMC, Platform: FreeBSD (%s). Built on %s (Git:%s)", g_sysinfo.GetUnameVersion().c_str(), __DATE__, GIT_REV); |