diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2021-01-02 03:29:16 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2021-01-03 01:15:57 +0100 |
| commit | 2a3366c4722ce9caca155a156145db6a7fc34a17 (patch) | |
| tree | 954a6f9a4e351586e37ea1b76a1fd5432189f8ea /Source/PltParser.c | |
| parent | 394bf97e1233954a6fc57e7ed1635910047cfc7f (diff) | |
| download | airport-2a3366c4722ce9caca155a156145db6a7fc34a17.tar.gz | |
Deprecate dprintf over printf
Diffstat (limited to 'Source/PltParser.c')
| -rw-r--r-- | Source/PltParser.c | 4 |
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 |
