diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2022-11-11 10:51:40 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2022-11-11 10:51:40 +0000 |
commit | 69f16c432a1b3fcd7a8fa82c6cb577f492118435 (patch) | |
tree | 925ba4f2d138b181e1cb15681b4d71fe687feb61 /usr.sbin | |
parent | c30aa943eff31387270aeeda65308b85f99f9376 (diff) |
typo
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/btrace/btrace.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/btrace/btrace.c b/usr.sbin/btrace/btrace.c index 1292f71323c..ad91f1b0516 100644 --- a/usr.sbin/btrace/btrace.c +++ b/usr.sbin/btrace/btrace.c @@ -1,4 +1,4 @@ -/* $OpenBSD: btrace.c,v 1.63 2022/06/02 21:38:46 jca Exp $ */ +/* $OpenBSD: btrace.c,v 1.64 2022/11/11 10:51:39 mpi Exp $ */ /* * Copyright (c) 2019 - 2021 Martin Pieuchot <mpi@openbsd.org> @@ -1230,7 +1230,7 @@ baexpr2long(struct bt_arg *ba, struct dt_evt *dtev) result = (lval || rval); break; default: - xabort("unsuported operation %d", ba->ba_type); + xabort("unsupported operation %d", ba->ba_type); } debug("ba=%p eval '%ld %s %ld = %d'\n", ba, lval, ba_name(ba), @@ -1323,7 +1323,7 @@ ba_name(struct bt_arg *ba) case B_AT_OP_LOR: return "||"; default: - xabort("unsuported type %d", ba->ba_type); + xabort("unsupported type %d", ba->ba_type); } assert(ba->ba_type == B_AT_VAR || ba->ba_type == B_AT_MAP); |