From 7e049bb986230bc7f3f2886f143cf794909330e1 Mon Sep 17 00:00:00 2001 From: ehouse Date: Fri, 15 Sep 2006 07:32:39 +0000 Subject: [PATCH] new strutils macro syntax --- xwords4/common/dictnry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xwords4/common/dictnry.c b/xwords4/common/dictnry.c index 269000adc..4a4bb3696 100644 --- a/xwords4/common/dictnry.c +++ b/xwords4/common/dictnry.c @@ -455,7 +455,7 @@ make_stubbed_dict( MPFORMAL_NOCOMMA ) XP_MEMSET( dict, 0, sizeof(*dict) ); MPASSIGN( dict->mpool, mpool ); - dict->name = copyString( MPPARM(mpool) "Stub dictionary" ); + dict->name = copyString( mpool, "Stub dictionary" ); dict->nFaces = datasize/3; dict->destructor = destroy_stubbed_dict;