From 8f3b15eba1942373cd14fbf568256abc78aa0aca Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Mon, 7 Apr 2008 14:31:36 +0200 Subject: some more cleanup --- ctok.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'ctok.c') diff --git a/ctok.c b/ctok.c index aaffed3b..58a18b43 100644 --- a/ctok.c +++ b/ctok.c @@ -165,7 +165,6 @@ ctokGetWordFromStream(ctok_t *pThis, uchar *pWordBuf, size_t lenWordBuf) /* push back the char that we have read too much */ CHKiRet(ctokUngetCharFromStream(pThis, c)); -dbgprintf("end ctokGetWordFromStream, stream now '%s'\n", pThis->pp); finalize_it: RETiRet; } @@ -230,8 +229,6 @@ ctokGetNumber(ctok_t *pThis, ctok_token_t *pToken) CHKiRet(var.SetNumber(pToken->pVar, n)); -dbgprintf("number, number is: '%lld'\n", n); - finalize_it: RETiRet; } @@ -268,8 +265,6 @@ ctokGetVar(ctok_t *pThis, ctok_token_t *pToken) } CHKiRet(rsCStrFinish(pStrB)); -dbgprintf("var, var is: '%s'\n", rsCStrGetSzStr(pstrVal)); - CHKiRet(var.SetString(pToken->pVar, pstrVal)); pstrVal = NULL; @@ -320,8 +315,6 @@ ctokGetSimpStr(ctok_t *pThis, ctok_token_t *pToken) } CHKiRet(rsCStrFinish(pStrB)); -dbgprintf("simpstr, str is: '%s'\n", rsCStrGetSzStr(pstrVal)); - CHKiRet(var.SetString(pToken->pVar, pstrVal)); pstrVal = NULL; -- cgit