From 9ba80f8c08dbfbf1b4eafa8fcb40001a55bbbf0e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 24 Sep 2023 17:23:57 +0200 Subject: Use boost::filesystem::path for gpu_binary_location(). --- src/lib/config.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/config.cc') diff --git a/src/lib/config.cc b/src/lib/config.cc index bbb3eef27..a4ee4ad99 100644 --- a/src/lib/config.cc +++ b/src/lib/config.cc @@ -1133,7 +1133,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(_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 (_selected_gpu)); root->add_child("GpuLicenseServer")->add_child_text (_gpu_license_server); -- cgit v1.2.3