From fd48fea054dfdbb2a32b65c6e49d1097b3f5b8c3 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 15 Dec 2014 15:38:12 -0800 Subject: [PATCH] client: message tweaks --- client/app_config.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/app_config.cpp b/client/app_config.cpp index c763720719..2b93820e0b 100644 --- a/client/app_config.cpp +++ b/client/app_config.cpp @@ -59,7 +59,7 @@ int APP_CONFIG::parse_gpu_versions(XML_PARSER& xp, PROJECT* p) { } } msg_printf_notice(p, false, NULL, - "missing in app_config.xml" + "Missing in app_config.xml" ); return ERR_XML_PARSE; } @@ -98,7 +98,7 @@ int APP_CONFIG::parse(XML_PARSER& xp, PROJECT* p) { xp.skip_unexpected(log_flags.unparsed_xml, "APP_CONFIG::parse"); } msg_printf_notice(p, false, NULL, - "missing in app_config.xml" + "Missing in app_config.xml" ); return ERR_XML_PARSE; } @@ -128,7 +128,7 @@ int APP_VERSION_CONFIG::parse(XML_PARSER& xp, PROJECT* p) { xp.skip_unexpected(log_flags.unparsed_xml, "APP_VERSION_CONFIG::parse"); } msg_printf_notice(p, false, NULL, - "missing in app_config.xml" + "Missing in app_config.xml" ); return ERR_XML_PARSE; } @@ -175,7 +175,7 @@ int APP_CONFIGS::parse(XML_PARSER& xp, PROJECT* p) { xp.skip_unexpected(log_flags.unparsed_xml, "APP_CONFIGS::parse"); } msg_printf_notice(p, false, NULL, - "missing in app_config.xml" + "Missing in app_config.xml" ); return ERR_XML_PARSE; }