From 53e71957f8823e793d2bd98cf23589774e65209a Mon Sep 17 00:00:00 2001 From: "Devin J. Pohly" Date: Sun, 26 Apr 2020 22:19:48 -0500 Subject: [PATCH] fix a long line --- dwl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dwl.c b/dwl.c index f762b1d..d0fb19b 100644 --- a/dwl.c +++ b/dwl.c @@ -697,7 +697,8 @@ motionnotify(uint32_t time) return; } else if (cursor_mode == CurResize) { resize(grabc, grabc->geom.x, grabc->geom.y, - cursor->x - grabc->geom.x, cursor->y - grabc->geom.y, 1); + cursor->x - grabc->geom.x, + cursor->y - grabc->geom.y, 1); return; }