mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-29 16:44:03 +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:
parent
0fb7a0beb0
commit
0bc013b1a6
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97632
@ -34,12 +34,14 @@
|
||||
* 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
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#ifndef lint
|
||||
#if 0
|
||||
static char sccsid[] = "@(#)trace.c 8.1 (Berkeley) 6/5/93";
|
||||
#endif
|
||||
static const char rcsid[] =
|
||||
"$FreeBSD$";
|
||||
#endif /* not lint */
|
||||
|
||||
/*
|
||||
@ -57,7 +59,7 @@ static char sccsid[] = "@(#)trace.c 8.1 (Berkeley) 6/5/93";
|
||||
#ifdef DEBUG
|
||||
FILE *ftrace = stdout;
|
||||
int tracing = 1;
|
||||
#else DEBUG
|
||||
#else /* DEBUG */
|
||||
FILE *ftrace = NULL;
|
||||
int tracing = 0;
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user