From 53ccd55b3537e537cfa63987449792185b769446 Mon Sep 17 00:00:00 2001 From: Richard Barber Date: Mon, 17 Feb 2020 11:55:56 -0800 Subject: [PATCH] mac:try a string pointer --- rtgui/options.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rtgui/options.cc b/rtgui/options.cc index 93a898987..b09a16ae8 100644 --- a/rtgui/options.cc +++ b/rtgui/options.cc @@ -2277,9 +2277,9 @@ void Options::load(bool lightweight) int homelength = strlen(homebuf.c_str()); homebuf[homelength-44] = '\0'; // Truncate path to just ${HOME}/Library std::string homeconfig{homebuf}; - std::strcat(homeconfig, "/Application Support/RawTherapee/config"); + std::strcat(&homeconfig[0], "/Application Support/RawTherapee/config"); path = homebuf.c_str(); - std::cout<