Commit b9d7675aca2f1d73ab2ed0ca796cc91671c52a20

Stefan Sperling 2019-08-11T20:24:29

wrap over-long line

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/tog/tog.c b/tog/tog.c
index 0a56b3a..a7c73d3 100644
--- a/tog/tog.c
+++ b/tog/tog.c
@@ -2231,7 +2231,8 @@ cmd_log(int argc, char *argv[])
 
 	if (repo_path == NULL) {
 		if (worktree)
-			repo_path = strdup(got_worktree_get_repo_path(worktree));
+			repo_path = strdup(
+			    got_worktree_get_repo_path(worktree));
 		else
 			repo_path = strdup(cwd);
 	}