From 78aa398e7c09adc4fb9318a4c497e8fd1bcd58ba Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 21 Jan 2016 20:46:25 +0100 Subject: Common: asterisks go against the type name not the variable name --- Source/Core/Common/Version.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'Source/Core/Common/Version.cpp') diff --git a/Source/Core/Common/Version.cpp b/Source/Core/Common/Version.cpp index 2ac01cd22e..86380c4d92 100644 --- a/Source/Core/Common/Version.cpp +++ b/Source/Core/Common/Version.cpp @@ -13,7 +13,7 @@ #define BUILD_TYPE_STR "" #endif -const char *scm_rev_str = "Dolphin " +const char* scm_rev_str = "Dolphin " #if !SCM_IS_MASTER "[" SCM_BRANCH_STR "] " #endif @@ -25,14 +25,14 @@ const char *scm_rev_str = "Dolphin " #endif #ifdef _WIN32 -const char *netplay_dolphin_ver = SCM_DESC_STR " Win"; +const char* netplay_dolphin_ver = SCM_DESC_STR " Win"; #elif __APPLE__ -const char *netplay_dolphin_ver = SCM_DESC_STR " Mac"; +const char* netplay_dolphin_ver = SCM_DESC_STR " Mac"; #else -const char *netplay_dolphin_ver = SCM_DESC_STR " Lin"; +const char* netplay_dolphin_ver = SCM_DESC_STR " Lin"; #endif -const char *scm_rev_git_str = SCM_REV_STR; +const char* scm_rev_git_str = SCM_REV_STR; -const char *scm_desc_str = SCM_DESC_STR; -const char *scm_branch_str = SCM_BRANCH_STR; +const char* scm_desc_str = SCM_DESC_STR; +const char* scm_branch_str = SCM_BRANCH_STR; -- cgit v1.2.3