summaryrefslogtreecommitdiffstats
path: root/runtime/print.c
diff options
context:
space:
mode:
authortrz <trz>2005-10-14 15:59:05 +0000
committertrz <trz>2005-10-14 15:59:05 +0000
commitab9c6bcec56162979d8b387b613530861a363876 (patch)
tree88b48551d0e3b83e9355e2fe264413678967c3d2 /runtime/print.c
parenta4a2cb6f89926bee2826766112f3e076f06a755c (diff)
downloadsystemtap-steved-ab9c6bcec56162979d8b387b613530861a363876.tar.gz
systemtap-steved-ab9c6bcec56162979d8b387b613530861a363876.tar.xz
systemtap-steved-ab9c6bcec56162979d8b387b613530861a363876.zip
Fix for PR 1455
Diffstat (limited to 'runtime/print.c')
-rw-r--r--runtime/print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/print.c b/runtime/print.c
index 794cd273..49040c2d 100644
--- a/runtime/print.c
+++ b/runtime/print.c
@@ -66,7 +66,7 @@ void _stp_print_flush (void)
/** Size of buffer, not including terminating NULL */
#ifndef STP_PRINT_BUF_LEN
-#define STP_PRINT_BUF_LEN (8192 - TIMESTAMP_SIZE - 2)
+#define STP_PRINT_BUF_LEN (8192 - TIMESTAMP_SIZE - 1)
#endif
static char _stp_pbuf[NR_CPUS][STP_PRINT_BUF_LEN + STP_PRINT_BUF_START + 1];