1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2026-01-01 01:41:18 +01:00

unittests: Fix -Wunused-parameter warnings

This commit is contained in:
Martine Lenders 2014-08-27 10:47:07 +02:00
parent 4960c57153
commit 2709d95e1a

View File

@ -34,6 +34,7 @@ static void my_cbor_print(const cbor_stream_t *stream)
#ifndef CBOR_NO_PRINT
cbor_stream_print(stream);
#else
(void)stream;
printf("<no print support>");
#endif
}