diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-18 22:21:51 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-18 22:21:51 +0000 |
commit | 99df48d70f10dcf8f95d4684262a3392d72ee9c6 (patch) | |
tree | e3e7768fa327c937e15a35579c8ce3362ff96f51 /screen-display.c | |
parent | 28aefe41623daba7685fe54ceb0b6952d5f6d98a (diff) | |
download | rtmux-99df48d70f10dcf8f95d4684262a3392d72ee9c6.tar.gz rtmux-99df48d70f10dcf8f95d4684262a3392d72ee9c6.tar.bz2 rtmux-99df48d70f10dcf8f95d4684262a3392d72ee9c6.zip |
Trimify.
Diffstat (limited to 'screen-display.c')
-rw-r--r-- | screen-display.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/screen-display.c b/screen-display.c index 73995cda..fce01d91 100644 --- a/screen-display.c +++ b/screen-display.c @@ -1,4 +1,4 @@ -/* $Id: screen-display.c,v 1.16 2008-06-04 19:20:09 nicm Exp $ */ +/* $Id: screen-display.c,v 1.17 2008-06-18 22:21:51 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -439,7 +439,7 @@ screen_display_copy_area(struct screen *dst, struct screen *src, } if (!screen_in_x(dst, px) || !screen_in_y(dst, py)) { SCREEN_DEBUG4(dst, px, py, nx, ny); - return; + return; } if (!screen_in_x(dst, px + nx - 1) || !screen_in_y(dst, py + ny - 1)) { SCREEN_DEBUG4(dst, px, py, nx, ny); |