Bug fix: print function call
authoryangxx <yangxx@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 17 Jul 2003 16:53:12 +0000 (16:53 +0000)
committeryangxx <yangxx@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 17 Jul 2003 16:53:12 +0000 (16:53 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@112 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/ltt/tracefile.c

index 12dbd11163517192b8dda9ef7ee1327f3a99d716..0bef060a5c79e7e7f7ba919d553ed6c80b734466 100644 (file)
@@ -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);
This page took 0.025675 seconds and 4 git commands to generate.