summaryrefslogtreecommitdiff
path: root/channels/console_board.c
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2008-06-29 18:50:20 +0000
committerLuigi Rizzo <rizzo@icir.org>2008-06-29 18:50:20 +0000
commitdc4c6733ac7ae8dc13c40bf6d723a6f928436431 (patch)
tree7798bdbcfced2abcb7814f36f0a8a39760eb3117 /channels/console_board.c
parent7b267dcb2f46cbb4d76a0c9e83edb015d9f57fde (diff)
fix wrong argument in checking boundaries for a rectangle
some whitespace fixes git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@126448 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/console_board.c')
-rw-r--r--channels/console_board.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/console_board.c b/channels/console_board.c
index eafccc391..fd286f29e 100644
--- a/channels/console_board.c
+++ b/channels/console_board.c
@@ -148,7 +148,7 @@ struct board *board_setup(SDL_Surface *screen, SDL_Rect *dest,
b->cur_col = 0; /* current print column */
b->cur_line = 0; /* last line displayed */
- ast_log(LOG_WARNING, "Message board %dx%d@%d,%d successfully initialized\n",
+ if (0) ast_log(LOG_WARNING, "Message board %dx%d@%d,%d successfully initialized\n",
b->p_rect->w, b->p_rect->h,
b->p_rect->x, b->p_rect->y);
return b;