From: phil@softsynth.com Date: Mon, 21 Jul 2008 22:26:04 +0000 (+0000) Subject: Remove debug statement. X-Git-Url: http://git.subgeniuskitty.com/pforth/.git/commitdiff_plain/987bbb7dd7e6b6ec8662346f617e43f3cc73e1b4 Remove debug statement. --- diff --git a/csrc/pf_inner.c b/csrc/pf_inner.c index 763b879..7b2da55 100644 --- a/csrc/pf_inner.c +++ b/csrc/pf_inner.c @@ -924,7 +924,7 @@ DBUG(("XX ah,m,l = 0x%8x,%8x,%8x - qh,l = 0x%8x,%8x\n", ah,am,al, qh,ql )); const char *famText = pfSelectFileModeCreate( TOS ); pfCopyMemory( gScratch, (char *) Temp, (uint32) Scratch ); gScratch[Scratch] = '\0'; - PRT(("Create file = %s with famTxt %s\n", gScratch, famText )); + DBUG(("Create file = %s with famTxt %s\n", gScratch, famText )); FileID = sdOpenFile( gScratch, famText ); TOS = ( FileID == NULL ) ? -1 : 0 ; M_PUSH( (cell) FileID );