diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-07-30 15:42:48 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-07-30 15:42:48 +0000 |
commit | 20ada772741281fa167fa1943ed3757cf6081f1f (patch) | |
tree | ebce5dcf0e19434fa91073730aef6d9d9876ab2e /usr.sbin | |
parent | b0c56fdbbe7e994399a8be030f4dae0d5786344a (diff) |
add backslash missing from ENTER() macro
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/named/named/tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/named/named/tree.c b/usr.sbin/named/named/tree.c index 2717229a182..5cc2132f989 100644 --- a/usr.sbin/named/named/tree.c +++ b/usr.sbin/named/named/tree.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tree.c,v 1.2 1997/03/12 10:42:38 downsj Exp $ */ +/* $OpenBSD: tree.c,v 1.3 1997/07/30 15:42:47 kstailey Exp $ */ /* tree - balanced binary tree library * @@ -46,7 +46,7 @@ static char *debugFuncs[256]; # define ENTER(proc) { \ debugFuncs[debugDepth] = proc; \ fprintf(stderr, "ENTER(%d:%s.%s)\n", \ - debugDepth, DEBUG, + debugDepth, DEBUG, \ debugFuncs[debugDepth]); \ debugDepth++; \ } |