diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-06-09 22:26:01 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-06-09 22:26:01 +0000 |
commit | 3daf3d17fa90dd5e3619ea9cc493462f0a298b7b (patch) | |
tree | fe92b9a517efa7e5a7cbdb5e9bde0839aa09501a /src | |
parent | c2c9a00664b9d2935a2b160e6d44357efd8563fb (diff) | |
download | xine-lib-3daf3d17fa90dd5e3619ea9cc493462f0a298b7b.tar.gz xine-lib-3daf3d17fa90dd5e3619ea9cc493462f0a298b7b.tar.bz2 |
Made profiler in non debug less verbose. Change the warning sentence.
CVS patchset: 2051
CVS date: 2002/06/09 22:26:01
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-utils/monitor.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/xine-utils/monitor.c b/src/xine-utils/monitor.c index 282f70e99..3d5aabec8 100644 --- a/src/xine-utils/monitor.c +++ b/src/xine-utils/monitor.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: monitor.c,v 1.4 2002/06/07 22:15:47 f1rmb Exp $ + * $Id: monitor.c,v 1.5 2002/06/09 22:26:01 f1rmb Exp $ * * debug print and profiling functions - implementation * @@ -137,21 +137,18 @@ void xine_profiler_print_results () { #else /* DEBUG */ -#define NO_PROFILER_MSG {printf("%s(): profiler is not enable.\n", __XINE_FUNCTION__);} +#define NO_PROFILER_MSG {printf("xine's profiler is unavailable.\n");} /* Dummies */ void xine_profiler_init (void) { NO_PROFILER_MSG } int xine_profiler_allocate_slot (char *label) { - NO_PROFILER_MSG return -1; } void xine_profiler_start_count (int id) { - NO_PROFILER_MSG } void xine_profiler_stop_count (int id) { - NO_PROFILER_MSG } void xine_profiler_print_results (void) { NO_PROFILER_MSG |