From 25975c93256ee34b4c16b8cd96871ca9f63b7a07 Mon Sep 17 00:00:00 2001 From: yangxx Date: Thu, 17 Jul 2003 16:53:12 +0000 Subject: [PATCH] Bug fix: print function call git-svn-id: http://ltt.polymtl.ca/svn@112 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt/branches/poly/ltt/tracefile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ltt/branches/poly/ltt/tracefile.c b/ltt/branches/poly/ltt/tracefile.c index 12dbd111..0bef060a 100644 --- a/ltt/branches/poly/ltt/tracefile.c +++ b/ltt/branches/poly/ltt/tracefile.c @@ -720,7 +720,7 @@ void ltt_tracefile_seek_time(LttTracefile *t, LttTime time) }else if(err < 0){ err = t->which_block; if(ltt_tracefile_read(t) == NULL){ - g_printf("End of file\n"); + g_print("End of file\n"); return; } if(t->which_block == err) @@ -743,7 +743,7 @@ void ltt_tracefile_seek_time(LttTracefile *t, LttTime time) err=readBlock(t,t->which_block+1); if(err) g_error("Can not read tracefile: %s\n", t->name); }else { - g_printf("End of file\n"); + g_print("End of file\n"); return; } if(tailTime < 0) return ltt_tracefile_seek_time(t, time); -- 2.34.1