diff options
author | 2002-05-13 15:38:58 +0000 | |
---|---|---|
committer | 2002-05-13 15:38:58 +0000 | |
commit | 42df424d189aef251899bbebd5c5a3316297f4ed (patch) | |
tree | d6a024a3b4b3cdc3ce616395aa4acc75d83bfed4 | |
parent | When collecting the completed tx descriptors, dmasync all of them (diff) | |
download | wireguard-openbsd-42df424d189aef251899bbebd5c5a3316297f4ed.tar.xz wireguard-openbsd-42df424d189aef251899bbebd5c5a3316297f4ed.zip |
minor knf.
-rw-r--r-- | sys/ddb/db_sym.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/ddb/db_sym.c b/sys/ddb/db_sym.c index d83247cd65c..fb8590696f8 100644 --- a/sys/ddb/db_sym.c +++ b/sys/ddb/db_sym.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_sym.c,v 1.25 2002/03/14 01:26:51 millert Exp $ */ +/* $OpenBSD: db_sym.c,v 1.26 2002/05/13 15:38:58 art Exp $ */ /* $NetBSD: db_sym.c,v 1.24 2000/08/11 22:50:47 tv Exp $ */ /* @@ -571,13 +571,13 @@ db_printsym(off, strategy) boolean_t -db_line_at_pc( sym, filename, linenum, pc) +db_line_at_pc(sym, filename, linenum, pc) db_sym_t sym; char **filename; int *linenum; db_expr_t pc; { - return X_db_line_at_pc( db_last_symtab, sym, filename, linenum, pc); + return X_db_line_at_pc(db_last_symtab, sym, filename, linenum, pc); } int |