diff options
| author | 2020-06-22 13:14:47 +0000 | |
|---|---|---|
| committer | 2020-06-22 13:14:47 +0000 | |
| commit | 2579caaf2fba8a51a09fafaa9890dc75c5bfdebe (patch) | |
| tree | d164eae701e58bab4ed6d7329ad79e77b10183b2 | |
| parent | Extend kqueue interface with EVFILT_EXCEPT filter. (diff) | |
| download | wireguard-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.y | 4 |
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 */ |
