From bdace838c67c1bd94e55e34270a8325933891466 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 2 Mar 2019 10:13:42 +0100 Subject: patch 8.1.0989: various small code ugliness Problem: Various small code ugliness. Solution: Remove pointless NULL checks. Fix function calls. Fix typos. (Dominique Pelle, closes #4060) --- src/gui_gtk_x11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gui_gtk_x11.c') diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c index 5e74adceb..5275026f8 100644 --- a/src/gui_gtk_x11.c +++ b/src/gui_gtk_x11.c @@ -7015,7 +7015,7 @@ gui_mch_drawsign(int row, int col, int typenr) (double)(MIN(height, SIGN_HEIGHT))) < 1.15) { /* Change the aspect ratio by at most 15% to fill the - * available space completly. */ + * available space completely. */ height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect; height = MIN(height, SIGN_HEIGHT); } -- cgit v1.2.1