fixed stupid mistake re msec inclusion in start and end timestamps (received was ok)

This commit is contained in:
Alexander Zangerl 2016-05-11 14:20:39 +10:00
parent 69cc9c062c
commit 4237451c49

View File

@ -1877,13 +1877,13 @@ static void String_ReceivedRaw(master_record_t *r, char *string)
static void String_FirstSeenRaw(master_record_t *r, char *string)
{
/* snprintf does write \0, and the max is INCL the terminating \0 */
snprintf(string, MAX_STRING_LENGTH, "%.3f", r->first/1000.0);
snprintf(string, MAX_STRING_LENGTH, "%u.%03u", r->first, r->msec_first);
}
static void String_LastSeenRaw(master_record_t *r, char *string)
{
/* snprintf does write \0, and the max is INCL the terminating \0 */
snprintf(string, MAX_STRING_LENGTH, "%.3f", r->last/1000.0);
snprintf(string, MAX_STRING_LENGTH, "%u.%03u", r->last, r->msec_last);
}