From a24cee11b718603fbc681e4a7a23f50c8d785ad7 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Mon, 25 Feb 2008 10:28:23 +0000 Subject: - added some temporary testing aids to conf.c, so that we can debug expression support as it is implemented - fixed a couple of bugs in expression system - added more operations to virtual machine - now works well with constants --- var.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'var.c') diff --git a/var.c b/var.c index 8b5a8dd0..3c6a101d 100644 --- a/var.c +++ b/var.c @@ -80,7 +80,7 @@ CODESTARTobjDebugPrint(var) dbgoprint((obj_t*) pThis, "type: cstr, val '%s'\n", rsCStrGetSzStr(pThis->val.pStr)); break; case VARTYPE_NUMBER: - dbgoprint((obj_t*) pThis, "type: int64, val %lld\n", pThis->val.num); + dbgoprint((obj_t*) pThis, "type: number, val %lld\n", pThis->val.num); break; default: dbgoprint((obj_t*) pThis, "type %d currently not suppored in debug output\n", pThis->varType); -- cgit