From 2e70c3915e5a2667f6a66c6ae1bf1051cac54b8c Mon Sep 17 00:00:00 2001 From: rusefi Date: Sat, 3 Jun 2017 21:59:58 -0400 Subject: [PATCH] tiny improvement --- firmware/util/datalogging.cpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/firmware/util/datalogging.cpp b/firmware/util/datalogging.cpp index eaebaf57fb..5d751950c9 100644 --- a/firmware/util/datalogging.cpp +++ b/firmware/util/datalogging.cpp @@ -82,19 +82,11 @@ void append(Logging *logging, const char *text) { * @note This method if fast because it does not validate much, be sure what you are doing */ void appendFast(Logging *logging, const char *text) { -// todo: fix this implementation? this would be a one-pass implementation instead of a two-pass - register char *s; - for (s = (char *) text; *s; ++s) - ; - int extraLen = (s - text); - s = logging->linePointer; while ((*s++ = *text++) != 0) ; - -// strcpy(logging->linePointer, text); - logging->linePointer += extraLen; + logging->linePointer = s - 1; } // todo: look into chsnprintf once on Chibios 3