From ebde099e8c1619b676e21ed92039402c00f5b69b Mon Sep 17 00:00:00 2001 From: "waterson%netscape.com" Date: Sun, 23 Aug 1998 22:12:07 +0000 Subject: [PATCH] Fixed the #ifdef NO_TIMING macros. git-svn-id: svn://10.0.0.236/trunk@8356 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/include/timing.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mozilla/include/timing.h b/mozilla/include/timing.h index 9a8be5713c4..8ce1a06990e 100644 --- a/mozilla/include/timing.h +++ b/mozilla/include/timing.h @@ -103,11 +103,11 @@ PR_END_EXTERN_C #if defined(NO_TIMING) -#define TIMING_MESSAGE(args) ((void) 0) -#define TIMING_STARTCLOCK_NAME(op, name) ((void) 0) -#define TIMING_STOPCLOCK_NAME(op, name, msg) ((void) 0) -#define TIMING_STARTCLOCK_OBJECT(op, name) ((void) 0) -#define TIMING_STOPCLOCK_OBJECT(op, name, msg) ((void) 0) +#define TIMING_MESSAGE(args) ((void) 0) +#define TIMING_STARTCLOCK_NAME(op, name) ((void) 0) +#define TIMING_STOPCLOCK_NAME(op, name, cx, msg) ((void) 0) +#define TIMING_STARTCLOCK_OBJECT(op, obj) ((void) 0) +#define TIMING_STOPCLOCK_OBJECT(op, obj, cx, msg) ((void) 0) #else /* !defined(NO_TIMING) */