diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-25 10:28:23 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-25 10:28:23 +0000 |
commit | a24cee11b718603fbc681e4a7a23f50c8d785ad7 (patch) | |
tree | a192855ad3f853e1b75fcdeab6c9d56e9e7299da /var.c | |
parent | 838ab14a17a60116d6fd51ebcf12416d736af546 (diff) | |
download | rsyslog-a24cee11b718603fbc681e4a7a23f50c8d785ad7.tar.gz rsyslog-a24cee11b718603fbc681e4a7a23f50c8d785ad7.tar.xz rsyslog-a24cee11b718603fbc681e4a7a23f50c8d785ad7.zip |
- 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
Diffstat (limited to 'var.c')
-rw-r--r-- | var.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |