diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2024-02-27 12:50:34 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2024-02-27 12:50:34 +0000 |
commit | 97615c10367731514aaba2614f2425d607339cf1 (patch) | |
tree | f6c5b30f3bac89d6d57ca737c5eab11cd3a99862 /usr.sbin | |
parent | 7ad518a56c8ba7ffc93f598f7242a60643c88d2a (diff) |
Printing large tuples require more than 64 chars, bump the string limit.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/btrace/btrace.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 <mpi@openbsd.org> @@ -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 *); |