From 97615c10367731514aaba2614f2425d607339cf1 Mon Sep 17 00:00:00 2001 From: Martin Pieuchot Date: Tue, 27 Feb 2024 12:50:34 +0000 Subject: Printing large tuples require more than 64 chars, bump the string limit. --- usr.sbin/btrace/btrace.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/btrace') diff --git a/usr.sbin/btrace/btrace.h b/usr.sbin/btrace/btrace.h index b5fb90f8c0a..0e4c26da6cc 100644 --- a/usr.sbin/btrace/btrace.h +++ b/usr.sbin/btrace/btrace.h @@ -1,4 +1,4 @@ -/* $OpenBSD: btrace.h,v 1.13 2023/09/11 19:01:26 mpi Exp $ */ +/* $OpenBSD: btrace.h,v 1.14 2024/02/27 12:50:33 mpi Exp $ */ /* * Copyright (c) 2019 - 2020 Martin Pieuchot @@ -58,7 +58,7 @@ void hist_increment(struct hist *, const char *); void hist_print(struct hist *, const char *); #define KLEN 1024 /* # of characters in map key, contain a stack trace */ -#define STRLEN 64 /* maximum # of bytes to output via str() function */ +#define STRLEN 128 /* maximum # of bytes to output via str() function */ /* printf.c */ int stmt_printf(struct bt_stmt *, struct dt_evt *); -- cgit v1.2.3