Log

Dependents:   oldheating gps motorhome heating

Files at this revision

API Documentation at this revision

Comitter:
andrewboyson
Date:
Fri Sep 27 11:32:50 2019 +0000
Parent:
19:14376c221aec
Commit message:
Removed bug in LogTimeF where the returned size was incorrect.

Changed in this revision

log.c Show annotated file Show diff for this revision Revisions of this file
--- a/log.c	Tue Aug 20 14:50:12 2019 +0000
+++ b/log.c	Fri Sep 27 11:32:50 2019 +0000
@@ -196,7 +196,7 @@
     int size = 0;
     va_list argptr;
     va_start(argptr, fmt);
-    size == logTimeOnly();
+    size = logTimeOnly();
     size++; LogChar(' ');
     size += LogV(fmt, argptr);
     va_end(argptr);