aboutsummaryrefslogtreecommitdiff
path: root/Source/PltParser.c
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2021-01-02 03:29:16 +0100
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2021-01-03 01:15:57 +0100
commit2a3366c4722ce9caca155a156145db6a7fc34a17 (patch)
tree954a6f9a4e351586e37ea1b76a1fd5432189f8ea /Source/PltParser.c
parent394bf97e1233954a6fc57e7ed1635910047cfc7f (diff)
downloadairport-2a3366c4722ce9caca155a156145db6a7fc34a17.tar.gz
Deprecate dprintf over printf
Diffstat (limited to 'Source/PltParser.c')
-rw-r--r--Source/PltParser.c4
1 files changed, 2 insertions, 2 deletions
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