pass c strings to fmt (…)
continuous-integration/drone/push Build was killed Details

This commit is contained in:
tastytea 2022-08-16 18:15:21 +02:00
parent 4b5e6898cd
commit c0a2f7e779
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ int main(int argc, char *argv[])
<< format(translate("Could not open {0:s}: {1:s}")
.str()
.c_str(),
e.path1(), e.what());
e.path1().c_str(), e.what());
return_code = EXIT_FAILURE;
}
}