Commit 0365f453 by Miguel Arroz

Codestyle (whitespaces) adjustment.

parent 3c79bafc
...@@ -2377,11 +2377,11 @@ static int refdb_reflog_fs__delete(git_refdb_backend *_backend, const char *name ...@@ -2377,11 +2377,11 @@ static int refdb_reflog_fs__delete(git_refdb_backend *_backend, const char *name
if ((error = reflog_path(&path, backend->repo, name)) < 0) if ((error = reflog_path(&path, backend->repo, name)) < 0)
goto out; goto out;
/* /*
* If a reference was moved downwards, eg refs/heads/br2 -> refs/heads/br2/new-name, * If a reference was moved downwards, eg refs/heads/br2 -> refs/heads/br2/new-name,
* refs/heads/br2 does exist but it's a directory. That's a valid situation. * refs/heads/br2 does exist but it's a directory. That's a valid situation.
* Proceed only if it's a file. * Proceed only if it's a file.
*/ */
if (!git_fs_path_isfile(path.ptr)) if (!git_fs_path_isfile(path.ptr))
goto out; goto out;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment