aboutsummaryrefslogtreecommitdiff
path: root/driver
diff options
context:
space:
mode:
authorFabian Meumertzheim <fabian@meumertzhe.im>2021-10-12 13:26:43 +0200
committerFabian Meumertzheim <fabian@meumertzhe.im>2021-10-15 10:11:09 +0200
commiteca7008370b93ff4e4b8480fbca46a2faa3c8b30 (patch)
tree68abe0a2f6369535f05fab4c62ad885367b2e0fa /driver
parentc2039f2ddeb3918a004c586357fe283c74f3d492 (diff)
downloadjazzer-api-eca7008370b93ff4e4b8480fbca46a2faa3c8b30.tar.gz
Explicitly convert filesystem::path to string
Diffstat (limited to 'driver')
-rw-r--r--driver/libfuzzer_driver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/libfuzzer_driver.cpp b/driver/libfuzzer_driver.cpp
index 11a5953e..02d567bb 100644
--- a/driver/libfuzzer_driver.cpp
+++ b/driver/libfuzzer_driver.cpp
@@ -71,7 +71,7 @@ std::string GetNewTempFilePath() {
if (std::filesystem::exists(temp_path))
throw std::runtime_error("Random temp file path exists: " +
temp_path.string());
- return temp_path;
+ return temp_path.generic_string();
}
} // namespace