From 2a3366c4722ce9caca155a156145db6a7fc34a17 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Sat, 2 Jan 2021 03:29:16 +0100 Subject: Deprecate dprintf over printf --- Source/PltParser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/PltParser.c') diff --git a/Source/PltParser.c b/Source/PltParser.c index 47a7e60..ec1af3d 100644 --- a/Source/PltParser.c +++ b/Source/PltParser.c @@ -84,11 +84,11 @@ bool PltParserLoadFile(const char* strPath, TYPE_FLIGHT_DATA* const ptrFlightDat { int k; - dprintf("Buffer: "); + printf("Buffer: "); for (k = 0; k < strlen(buffer); k++) { - dprintf("0x%02X ", buffer[k]); + printf("0x%02X ", buffer[k]); } // Format should always be HH:MM (5 characters) // Treat any other combination as possible error -- cgit v1.2.3