From c731e0d231b559628e745cd85e38517261173d62 Mon Sep 17 00:00:00 2001 From: ehouse Date: Mon, 5 Jan 2009 01:59:04 +0000 Subject: [PATCH] Remove newlines from debug statements. --- xwords4/common/model.c | 4 ++-- xwords4/linux/linuxutl.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/xwords4/common/model.c b/xwords4/common/model.c index 3d00e760b..d4e3e6356 100644 --- a/xwords4/common/model.c +++ b/xwords4/common/model.c @@ -1,6 +1,6 @@ /* -*-mode: C; fill-column: 78; c-basic-offset: 4; -*- */ /* - * Copyright 2000 by Eric House (xwords@eehouse.org). All rights reserved. + * Copyright 2000-2009 by Eric House (xwords@eehouse.org). All rights reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -710,7 +710,7 @@ model_makeTurnFromStream( ModelCtxt* model, XP_U16 playerNum, numTiles = (XP_U16)stream_getBits( stream, NTILES_NBITS ); - XP_STATUSF( "model_makeTurnFromStream: numTiles=%d\n", numTiles ); + XP_STATUSF( "model_makeTurnFromStream: numTiles=%d", numTiles ); while ( numTiles-- ) { XP_S16 foundAt; diff --git a/xwords4/linux/linuxutl.c b/xwords4/linux/linuxutl.c index 135d0e4f0..300be8a5c 100644 --- a/xwords4/linux/linuxutl.c +++ b/xwords4/linux/linuxutl.c @@ -1,6 +1,6 @@ /* -*-mode: C; fill-column: 78; c-basic-offset: 4; compile-command: "make MEMDEBUG=TRUE"; -*- */ /* - * Copyright 2000-2008 by Eric House (xwords@eehouse.org). All rights + * Copyright 2000-2009 by Eric House (xwords@eehouse.org). All rights * reserved. * * This program is free software; you can redistribute it and/or @@ -58,7 +58,7 @@ linux_debugf( const char* format, ... ) static DictionaryCtxt* linux_util_makeEmptyDict( XW_UtilCtxt* uctx ) { - XP_DEBUGF( "linux_util_makeEmptyDict called\n" ); + XP_DEBUGF( "linux_util_makeEmptyDict called" ); return linux_dictionary_make( MPPARM(uctx->mpool) NULL ); } /* linux_util_makeEmptyDict */