Skip to content

Commit 4f1bbd2

Browse files
pcloudsgitster
authored andcommitted
mv: no SP between function name and the first opening parenthese
Signed-off-by: Nguyễn Thái Ngọc Duy <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent dcadc8b commit 4f1bbd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builtin/mv.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ int cmd_mv(int argc, const char **argv, const char *prefix)
229229
if (!bad)
230230
continue;
231231
if (!ignore_errors)
232-
die (_("%s, source=%s, destination=%s"),
232+
die(_("%s, source=%s, destination=%s"),
233233
bad, src, dst);
234234
if (--argc > 0) {
235235
int n = argc - i;
@@ -253,7 +253,7 @@ int cmd_mv(int argc, const char **argv, const char *prefix)
253253
printf(_("Renaming %s to %s\n"), src, dst);
254254
if (!show_only && mode != INDEX) {
255255
if (rename(src, dst) < 0 && !ignore_errors)
256-
die_errno (_("renaming '%s' failed"), src);
256+
die_errno(_("renaming '%s' failed"), src);
257257
if (submodule_gitfile[i]) {
258258
if (submodule_gitfile[i] != SUBMODULE_WITH_GITDIR)
259259
connect_work_tree_and_git_dir(dst, submodule_gitfile[i]);

0 commit comments

Comments
 (0)