fold a function call onto a single line
diff --git a/lib/worktree.c b/lib/worktree.c
index 69f0ca5..7f53773 100644
--- a/lib/worktree.c
+++ b/lib/worktree.c
@@ -2830,8 +2830,7 @@ schedule_addition(void *arg, unsigned char status, unsigned char staged_status,
}
free(path);
- return (*a->progress_cb)(a->progress_arg,
- GOT_STATUS_ADD, relpath);
+ return (*a->progress_cb)(a->progress_arg, GOT_STATUS_ADD, relpath);
done:
free(path);
return err;