From 9b147467602e7033ded5b56360c884eab3fa5423 Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Tue, 6 Apr 2021 18:41:03 -0400 Subject: [PATCH] Fix line length --- src/stagit.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/stagit.c b/src/stagit.c index 1243668..100f7be 100644 --- a/src/stagit.c +++ b/src/stagit.c @@ -862,7 +862,8 @@ writeblob(git_object *obj, const char *fpath, const char *filename, git_off_t fi strcat(newfpath, fpath); char newfilename[PATH_MAX]; strcat(newfilename, filename); - writeblob(obj, strcat(newfpath, "-raw"), strcat(newfilename, "-raw"), filesize); + writeblob(obj, strcat(newfpath, "-raw"), + strcat(newfilename, "-raw"), filesize); // TODO: Add view-raw button } } -- 2.39.2