From: FreeBirdLjj Date: Sat, 4 Oct 2014 13:03:02 +0000 (+0800) Subject: Use `MAX()` to make codes more readable. X-Git-Url: https://git.danieliu.xyz/?p=smdp.git;a=commitdiff_plain;h=455a6a71b6a1f49e9454a64856b77f8e85915f26 Use `MAX()` to make codes more readable. --- 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; }