diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-08-24 10:15:36 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-08-24 10:15:36 -0400 |
commit | c116bc537041827e438cec9d49c5249c33f0377e (patch) | |
tree | b60d09aa46abcdfe3fa63a293d1fb4398c9f54a9 /instr-daemon.c | |
parent | 3764cf19983e58a471ac0359509ca81b60526ce3 (diff) |
fix attempt at full set of device functions
Diffstat (limited to 'instr-daemon.c')
-rw-r--r-- | instr-daemon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/instr-daemon.c b/instr-daemon.c index 6c2905e..3bc4a57 100644 --- a/instr-daemon.c +++ b/instr-daemon.c @@ -251,9 +251,9 @@ int main(int argc, char **argv) /* start-up delay */ LCD_write(3,0,"Warming up, please wait... "); - globals.startup_timer_value = sec_timer (); + globals.Timers.startup_timer_value = sec_timer (); long timer_count; - while ((timer_count=sec_timer()-globals.startup_timer_value) < (long)globals.Flash.turn_on_dly) { + while ((timer_count=sec_timer()-globals.Timers.startup_timer_value) < (long)globals.Flash.turn_on_dly) { message = g_strdup_printf ("%ld ", (long) globals.Flash.turn_on_dly - timer_count); LCD_write(3,27,message); g_free (message); |