From 910ce572b08ecc0cbfd6853ee694db7978ccd080 Mon Sep 17 00:00:00 2001 From: Richard Barber Date: Sun, 16 Feb 2020 23:13:46 -0800 Subject: [PATCH] mac:reorder a cout --- rtgui/options.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtgui/options.cc b/rtgui/options.cc index efc718c20..9bf1302ed 100644 --- a/rtgui/options.cc +++ b/rtgui/options.cc @@ -2282,7 +2282,7 @@ void Options::load(bool lightweight) strcpy( concatString, homedir ); strcat( concatString, configdir ); path = concatString; - std::cout << concatString << "\n"; + std::cout << "config=" << path << "\n"; delete[] concatString; #else path = g_getenv("RT_SETTINGS"); @@ -2336,8 +2336,8 @@ void Options::load(bool lightweight) gchar* concatString2 = new gchar[ bufferSize2 ]; strcpy( concatString2, homedir ); strcat( concatString2, cachedir ); - std::cout << path << "\n"; path = concatString2; + std::cout << "cache=" << path << "\n"; delete[] concatString2; #else path = g_getenv("RT_CACHE");