summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkn <kn@openbsd.org>2020-06-22 13:14:47 +0000
committerkn <kn@openbsd.org>2020-06-22 13:14:47 +0000
commit2579caaf2fba8a51a09fafaa9890dc75c5bfdebe (patch)
treed164eae701e58bab4ed6d7329ad79e77b10183b2
parentExtend kqueue interface with EVFILT_EXCEPT filter. (diff)
downloadwireguard-openbsd-2579caaf2fba8a51a09fafaa9890dc75c5bfdebe.tar.xz
wireguard-openbsd-2579caaf2fba8a51a09fafaa9890dc75c5bfdebe.zip
Fix "the symbol HZ is undefined" yacc warning
OK mpi
-rw-r--r--usr.sbin/btrace/bt_parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/btrace/bt_parse.y b/usr.sbin/btrace/bt_parse.y
index 1eb54353cd9..02407d4062c 100644
--- a/usr.sbin/btrace/bt_parse.y
+++ b/usr.sbin/btrace/bt_parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: bt_parse.y,v 1.13 2020/04/24 15:10:41 mpi Exp $ */
+/* $OpenBSD: bt_parse.y,v 1.14 2020/06/22 13:14:47 kn Exp $ */
/*
* Copyright (c) 2019 - 2020 Martin Pieuchot <mpi@openbsd.org>
@@ -98,7 +98,7 @@ static void yyerror(const char *, ...);
static int yylex(void);
%}
-%token ERROR OP_EQ OP_NEQ BEGIN END
+%token ERROR OP_EQ OP_NEQ BEGIN END HZ
/* Builtins */
%token BUILTIN PID TID
/* Functions and Map operators */