summaryrefslogtreecommitdiff
path: root/src/lib/config.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-09-24 17:23:57 +0200
committerCarl Hetherington <cth@carlh.net>2024-01-28 02:01:57 +0100
commit9aca7d85aa86a9232a2cd83e867d679c30487059 (patch)
tree0161617f7c7a3b3b7164eb8e905d89f7d9bbb009 /src/lib/config.cc
parent3b1ee8690b21ddc5ff53ba3b2ba50270e3c9f9bf (diff)
Use boost::filesystem::path for gpu_binary_location().
Diffstat (limited to 'src/lib/config.cc')
-rw-r--r--src/lib/config.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc
index 326fa36a1..d830c44b0 100644
--- a/src/lib/config.cc
+++ b/src/lib/config.cc
@@ -1140,7 +1140,7 @@ Config::write_config () const
/* [XML] ISDCFNamePartLength Maximum length of the "name" part of an ISDCF name, which should be 14 according to the standard */
root->add_child("ISDCFNamePartLength")->add_child_text(raw_convert<string>(_isdcf_name_part_length));
- root->add_child("GpuBinaryLocation")->add_child_text (_gpu_binary_location);
+ root->add_child("GpuBinaryLocation")->add_child_text (_gpu_binary_location.string());
root->add_child("EnableGpu")->add_child_text ((_enable_gpu ? "1" : "0"));
root->add_child("SelectedGpu")->add_child_text (raw_convert<string> (_selected_gpu));
root->add_child("GpuLicenseServer")->add_child_text (_gpu_license_server);