From 455a6a71b6a1f49e9454a64856b77f8e85915f26 Mon Sep 17 00:00:00 2001 From: FreeBirdLjj Date: Sat, 4 Oct 2014 21:03:02 +0800 Subject: [PATCH] Use `MAX()` to make codes more readable. --- src/viewer.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/viewer.c b/src/viewer.c index 4031948..a82b0d0 100644 --- a/src/viewer.c +++ b/src/viewer.c @@ -117,7 +117,7 @@ int ncurses_display(deck_t *deck, int notrans, int nofade, int invert) { } // set max_cols - max_cols = (i > max_cols) ? i : max_cols; + max_cols = MAX(i, max_cols); // iterate to next line offset = prev_blank(line->text, offset + COLS); @@ -125,16 +125,16 @@ int ncurses_display(deck_t *deck, int notrans, int nofade, int invert) { lc++; } // set max_cols one last time - max_cols = (i > max_cols) ? i : max_cols; + max_cols = MAX(i, max_cols); } else { // set max_cols - max_cols = (line->length > max_cols) ? line->length : max_cols; + max_cols = MAX(line->length, max_cols); } lc++; line = line->next; } - max_lines = (lc > max_lines) ? lc : max_lines; + max_lines = MAX(lc, max_lines); slide = slide->next; } -- 2.20.1