From 3aa540a69ecc75bf88c95ae1ce14c6c983accb3c Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 8 Sep 2017 07:47:58 -0400 Subject: [PATCH] Clang: static constant usage strings --- src/crashreporter/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/crashreporter/main.cpp b/src/crashreporter/main.cpp index 17e6fd13b..8d7ef16e0 100644 --- a/src/crashreporter/main.cpp +++ b/src/crashreporter/main.cpp @@ -41,11 +41,11 @@ #ifdef Q_OS_LINUX -const char* k_usage = +static const char k_usage[] = "Usage:\n" " CrashReporter \n"; #else -const char* k_usage = +static const char k_usage[] = "Usage:\n" " CrashReporter \n"; #endif