From 94238683390de737ac67c1ed19112b9fc1348caf Mon Sep 17 00:00:00 2001 From: Johannes Reinhardt Date: Sat, 12 Jul 2008 10:50:36 +0200 Subject: [PATCH] fixed main --- src/path.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/path.c b/src/path.c index b85766a..e96b93f 100644 --- a/src/path.c +++ b/src/path.c @@ -59,8 +59,8 @@ void path_execute(trial* t,path* p){ return; } - now = timestamp_get_curts(t); - /*fprintf(stderr,"Now: %d TS: %d\n",now,clock());*/ + now = getcurts(t); + fprintf(stderr,"Now: %d TS: %d\n",now,clock()); /*magic number for latency, send messages that much earlier*/ while(tmp != NULL && now - 20 > tmp->ts){ tmp = (command*) g_queue_pop_head(p->commands);