diff options
author | Steve Peters <steve@fisharerojo.org> | 2005-08-09 01:21:48 -0500 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-08-09 11:24:54 +0000 |
commit | cf2782cdafcea0f3c4f95a9125e1a5a110b9dfbc (patch) | |
tree | 4ec1ceffe21fbb93f8805230d86791475ff41997 | |
parent | d457d97aa74412bc6e46d98cb5ecab3d8c0837fb (diff) | |
download | perl-cf2782cdafcea0f3c4f95a9125e1a5a110b9dfbc.tar.gz |
Fix a couple of random warnings
Message-ID: <20050809112148.GA4902@mccoy.peters.homeunix.org>
p4raw-id: //depot/perl@25279
-rw-r--r-- | nostdio.h | 2 | ||||
-rw-r--r-- | perl.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -111,7 +111,7 @@ struct _FILE; #define _flsbuf(c,f) _CANNOT _flsbuf_ #define fdopen(fd,p) _CANNOT _fdopen_ #define fileno(f) _CANNOT _fileno_ -#if SFIO_VERSION < 20000101L +#if defined(SFIO_VERSION) && SFIO_VERSION < 20000101L #define flockfile(f) _CANNOT _flockfile_ #define ftrylockfile(f) _CANNOT _ftrylockfile_ #define funlockfile(f) _CANNOT _funlockfile_ @@ -2238,8 +2238,10 @@ S_run_body(pTHX_ I32 oldscope) if (!PL_restartop) { DEBUG_x(dump_all()); +#ifdef DEBUGGING if (!DEBUG_q_TEST) PERL_DEBUG(PerlIO_printf(Perl_debug_log, "\nEXECUTING...\n\n")); +#endif DEBUG_S(PerlIO_printf(Perl_debug_log, "main thread is 0x%"UVxf"\n", PTR2UV(thr))); |