mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Core: fix missing argument to report_error
The format requires a string argument. Found via LGTM.com Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
3d193c7fdb
commit
87eb95d004
1 changed files with 1 additions and 1 deletions
|
@ -836,7 +836,7 @@ static struct git_repository *get_remote_repo(const char *localdir, const char *
|
|||
if (is_subsurface_cloud)
|
||||
(void)cleanup_local_cache(remote, branch);
|
||||
else
|
||||
report_error("local git cache at '%s' is corrupt");
|
||||
report_error("local git cache at '%s' is corrupt", localdir);
|
||||
return NULL;
|
||||
}
|
||||
return update_local_repo(localdir, remote, branch, rt);
|
||||
|
|
Loading…
Add table
Reference in a new issue