summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnuradio-runtime/lib/prefs.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/prefs.cc b/gnuradio-runtime/lib/prefs.cc
index af6c35f0b9..a450644dd2 100644
--- a/gnuradio-runtime/lib/prefs.cc
+++ b/gnuradio-runtime/lib/prefs.cc
@@ -57,7 +57,7 @@ std::vector<std::string> prefs::_sys_prefs_filenames()
if (fs::is_directory(dir)) {
for (const auto& p : fs::directory_iterator(dir)) {
if (p.path().extension() == ".conf")
- fnames.push_back(p.path());
+ fnames.push_back(p.path().string());
}
std::sort(fnames.begin(), fnames.end());
}