diff options
Diffstat (limited to 'gnuradio-runtime/lib/sys_paths.cc')
-rw-r--r-- | gnuradio-runtime/lib/sys_paths.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnuradio-runtime/lib/sys_paths.cc b/gnuradio-runtime/lib/sys_paths.cc index 2f26724e7c..b9c3fc964f 100644 --- a/gnuradio-runtime/lib/sys_paths.cc +++ b/gnuradio-runtime/lib/sys_paths.cc @@ -73,12 +73,11 @@ std::string __userconf_path() boost::filesystem::path p; if (path) { p = path; - } - else { + } else { p = appdata_path(); p = p / ".gnuradio"; } - + return p.string(); } |