server: properly delete output-stream files

logic inversion
This commit is contained in:
Dirk-Jan C. Binnema 2023-09-20 21:35:55 +03:00
parent 24add72126
commit 1df4452ff3
1 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ struct OutputStream {
* longer needed.
*/
void unlink () {
if (!fname_.empty())
if (fname_.empty())
return;
if (auto&&res{::unlink(fname_.c_str())}; res != 0)
mu_warning("failed to unlink '{}'", ::strerror(res));