Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: oldheating gps motorhome heating
Revision 20:5b5284c60d3c, committed 2019-09-27
- 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);