Remove newlines from debug statements.

This commit is contained in:
ehouse 2009-01-05 01:59:04 +00:00
parent 4698b835e8
commit c731e0d231
2 changed files with 4 additions and 4 deletions

View file

@ -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;

View file

@ -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 */