commit 3fd4eb5ab97dd3b1914bfe46f5b6a7bc1bd1ec81 from: Stefan Sperling date: Sat Nov 23 09:13:53 2019 UTC fold a function call onto a single line commit - 4e68cba3de6663791e40fa15f1eecbc4a2bf724c commit + 3fd4eb5ab97dd3b1914bfe46f5b6a7bc1bd1ec81 blob - 69f0ca5bcbdcdd0f823c7d47d32883b26350c9ad blob + 7f537736429accac7e42d3ec791edb2abbed2205 --- lib/worktree.c +++ lib/worktree.c @@ -2830,8 +2830,7 @@ schedule_addition(void *arg, unsigned char status, uns } 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;