summaryrefslogtreecommitdiffstats
path: root/app/dcf77.c
diff options
context:
space:
mode:
authorJames McKenzie <root@ka-ata-killa.panaceas.james.local>2023-02-18 18:48:42 +0000
committerJames McKenzie <root@ka-ata-killa.panaceas.james.local>2023-02-18 18:48:42 +0000
commit6bc7601e8f6c83c8def86aa7ae7cf06f51593771 (patch)
tree9518dad41956f815f8049301b5a3ff8c59131e2f /app/dcf77.c
parentae0195ab312388deb8466816375addc155eadad9 (diff)
downloadclock-master.tar.gz
clock-master.tar.bz2
clock-master.zip
remove all use of FP in printf as it's not thread safeHEADmaster
Diffstat (limited to 'app/dcf77.c')
-rw-r--r--app/dcf77.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/dcf77.c b/app/dcf77.c
index 4b69a69..b9b7dcd 100644
--- a/app/dcf77.c
+++ b/app/dcf77.c
@@ -104,7 +104,7 @@ static void process_bits (uint64_t abs, uint64_t ptp)
printf ("DCF77: Next minute is: %02d-%02d-%02d %02d:%02d\r\n", u.year, u.month, u.mday, u.hour, u.minute);
time_print_epoch ("DCF77: ", e, dcf77_info);
- meteotime_save(&u,bits);
+ meteotime_save (&u, bits);
dump_bits ("dcf77", bits);
}