From 3f2e2fd65ff22222776c33db3ab1a3265e2dc0fa Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Wed, 4 Jan 2006 20:10:08 +0000 Subject: [PATCH] Fixed definition of stime and Tsec in start_threads.c. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@44 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- start_threads.c | 3 ++- wsjt.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/start_threads.c b/start_threads.c index 6b03c7958..b8d3aac9f 100644 --- a/start_threads.c +++ b/start_threads.c @@ -325,7 +325,8 @@ int capture_callback(alsa_driver_t *alsa_driver_capture) { snd_pcm_status_dump(pcm_stat, jcd_out); #endif gettimeofday(&tv, NULL); - stime = (double) tv.tv_sec + ((double)tv.tv_usec / 1000.0); + stime = (double) tv.tv_sec + ((double)tv.tv_usec / 1000000.0); + *(this->Tsec)=stime; ib=*(this->ibuf); this->tbuf[ib++]=stime; if(ib>=1024) ib=0; diff --git a/wsjt.py b/wsjt.py index a26545e94..fd5721d88 100644 --- a/wsjt.py +++ b/wsjt.py @@ -1,4 +1,4 @@ -#---------------------------------------------------------- WSJT +#----------------------------------------------------------- WSJT from Tkinter import * from tkFileDialog import * import Pmw