summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib/sys_paths.cc
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2020-01-09 12:34:08 -0800
committerMartin Braun <martin.braun@ettus.com>2020-01-10 19:21:38 -0800
commite0598e54b7202dfc0f37b402a2997e650c52b316 (patch)
tree3de3104b057a0173881ec00333180bd1427e9214 /gnuradio-runtime/lib/sys_paths.cc
parent4fd06de424850a0b70f6e8e959edcda9fe01f060 (diff)
Fix all formatting issues
This fixes every leftover file in the GNU Radio source tree to match our clang-format definition.
Diffstat (limited to 'gnuradio-runtime/lib/sys_paths.cc')
-rw-r--r--gnuradio-runtime/lib/sys_paths.cc5
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();
}