From 1762589d19573fdfef4dc0fe7303b7e9f42b11d6 Mon Sep 17 00:00:00 2001 From: yangxx Date: Wed, 3 Sep 2003 17:29:03 +0000 Subject: [PATCH] git-svn-id: http://ltt.polymtl.ca/svn@220 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt/branches/poly/include/ltt/ltt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ltt/branches/poly/include/ltt/ltt.h b/ltt/branches/poly/include/ltt/ltt.h index fc00a14d..1da397f3 100644 --- a/ltt/branches/poly/include/ltt/ltt.h +++ b/ltt/branches/poly/include/ltt/ltt.h @@ -135,8 +135,8 @@ do \ (T2).tv_nsec = (T1).tv_nsec * (FLOAT); \ if((T2).tv_nsec >= 1000000000)\ {\ - (T2).tv_sec += (T3).tv_nsec / 1000000000;\ - (T2).tv_nsec = (T3).tv_nsec % 1000000000;\ + (T2).tv_sec += (T2).tv_nsec / 1000000000;\ + (T2).tv_nsec = (T2).tv_nsec % 1000000000;\ }\ } while(0) -- 2.34.1