From ed86c6de64f658f92a8bfc6f6a6b85bdffc5eab4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Fri, 20 Nov 1998 10:57:42 -0800 Subject: [PATCH] I will get profiling to work, even if it is the last thing I do! Rev: src/interpret.c:1.109 --- src/interpret.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/interpret.c b/src/interpret.c index 148dac6a21..d743242ad2 100644 --- a/src/interpret.c +++ b/src/interpret.c @@ -4,7 +4,7 @@ ||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h" -RCSID("$Id: interpret.c,v 1.108 1998/11/20 18:38:44 hubbe Exp $"); +RCSID("$Id: interpret.c,v 1.109 1998/11/20 18:57:42 hubbe Exp $"); #include "interpret.h" #include "object.h" #include "program.h" @@ -1810,8 +1810,9 @@ void mega_apply(enum apply_type type, INT32 args, void *arg1, void *arg2) unsigned INT32 self_time_base; if(start_time < 0) { - fatal("gethrtime() shrunk\n start_time=%ld\n time_base=%ld\n", + fatal("gethrtime() shrunk\n start_time=%ld\n gethrtime()\n time_base=%ld\n", (long)(start_time/100000), + (long)(gethrtime()/100000), (long)(time_base/100000)); } #endif -- GitLab