Fix format string issue in sysmerge(8) conf_load error handler.

This commit is contained in:
Jonas 'Sortie' Termansen 2024-03-03 23:54:19 +01:00
parent dc1fb1ceca
commit 7d25725e0e
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ int main(int argc, char* argv[])
if ( !conf_path )
err(2, "malloc");
if ( !conf_load(&conf, conf_path) && errno != ENOENT )
err(2, conf_path);
err(2, "%s", conf_path);
bool did_cancel = false;
if ( !no_cancel && has_pending_upgrade(target) )