From a5d4b7f3d927b267e21aa34c2451669318536e46 Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 17 Apr 2014 14:45:49 +0000 Subject: Some more long lines. --- utf8.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'utf8.c') diff --git a/utf8.c b/utf8.c index 082683e8..945715dd 100644 --- a/utf8.c +++ b/utf8.c @@ -247,8 +247,7 @@ utf8_append(struct utf8_data *utf8data, u_char ch) /* Check if two width tree entries overlap. */ int -utf8_overlap( - struct utf8_width_entry *item1, struct utf8_width_entry *item2) +utf8_overlap(struct utf8_width_entry *item1, struct utf8_width_entry *item2) { if (item1->first >= item2->first && item1->first <= item2->last) return (1); -- cgit