1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-28 08:02:54 +00:00

missing \ causes -DDEBUG compile failure..

closes PR 696
Submitted by:	me@freebsd.org
This commit is contained in:
Peter Wemm 1995-09-23 17:32:30 +00:00
parent feb1b301ec
commit 0c4276b066
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=10977

View File

@ -44,7 +44,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++; \
}