1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-30 16:51:41 +00:00

Fix preprocessor directive syntax (text after #else).

This program is not likely to compile if DEBUG is ever defined.
This commit is contained in:
Garrett Wollman 2002-05-30 21:21:23 +00:00
parent 0fb7a0beb0
commit 0bc013b1a6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97632

View File

@ -34,12 +34,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
*
* $FreeBSD$
*/ */
#ifndef lint #ifndef lint
#if 0
static char sccsid[] = "@(#)trace.c 8.1 (Berkeley) 6/5/93"; static char sccsid[] = "@(#)trace.c 8.1 (Berkeley) 6/5/93";
#endif
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */ #endif /* not lint */
/* /*
@ -57,7 +59,7 @@ static char sccsid[] = "@(#)trace.c 8.1 (Berkeley) 6/5/93";
#ifdef DEBUG #ifdef DEBUG
FILE *ftrace = stdout; FILE *ftrace = stdout;
int tracing = 1; int tracing = 1;
#else DEBUG #else /* DEBUG */
FILE *ftrace = NULL; FILE *ftrace = NULL;
int tracing = 0; int tracing = 0;
#endif #endif