mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-11-16 07:48:07 +01:00
Remove newlines from debug statements.
This commit is contained in:
parent
4698b835e8
commit
c731e0d231
2 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
|
|
@ -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 */
|
||||
|
||||
|
|
Loading…
Reference in a new issue