Utils: Minor nitpick

This commit is contained in:
tt2468 2021-06-12 22:17:55 -07:00
parent ef4bfb3044
commit 413b76d9a6

View File

@ -102,7 +102,7 @@ std::string Utils::Obs::StringHelper::GetLastReplayBufferFilePath()
calldata_t cd = {0};
proc_handler_t *ph = obs_output_get_proc_handler(output);
proc_handler_call(ph, "get_last_replay", &cd);
std::string ret = calldata_string(&cd, "path");
auto ret = calldata_string(&cd, "path");
calldata_free(&cd);
obs_output_release(output);
return ret;