diff options
author | 1997-07-06 16:45:21 +0000 | |
---|---|---|
committer | 1997-07-06 16:45:21 +0000 | |
commit | 1bc2ec2bd6950e480021f8149a3b3bb795a6b7e6 (patch) | |
tree | 7104d79abac5697e8f586f3d9f3cde33654f16e3 /sys/ddb/db_expr.c | |
parent | Style nits + provide getreg_val proto conditionally. Removed unused var. (diff) | |
download | wireguard-openbsd-1bc2ec2bd6950e480021f8149a3b3bb795a6b7e6.tar.xz wireguard-openbsd-1bc2ec2bd6950e480021f8149a3b3bb795a6b7e6.zip |
A number should be db_expr_t
Diffstat (limited to 'sys/ddb/db_expr.c')
-rw-r--r-- | sys/ddb/db_expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_expr.c b/sys/ddb/db_expr.c index 64d38e35997..317110fe9db 100644 --- a/sys/ddb/db_expr.c +++ b/sys/ddb/db_expr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_expr.c,v 1.4 1996/04/21 22:19:00 deraadt Exp $ */ +/* $OpenBSD: db_expr.c,v 1.5 1997/07/06 16:45:21 niklas Exp $ */ /* $NetBSD: db_expr.c,v 1.5 1996/02/05 01:56:58 christos Exp $ */ /* @@ -57,7 +57,7 @@ db_term(valuep) return (TRUE); } if (t == tNUMBER) { - *valuep = (db_expr_t)db_tok_number; + *valuep = db_tok_number; return (TRUE); } if (t == tDOT) { |