sample server: fix printf format compiler warning

This commit is contained in:
Bernhard Miklautz 2014-04-16 10:22:53 +02:00
parent 117112d20f
commit 8168477886

View File

@ -443,7 +443,7 @@ static void* tf_debug_channel_thread_func(void* arg)
Stream_SetPosition(s, BytesReturned);
printf("got %d bytes\n", BytesReturned);
printf("got %lu bytes\n", BytesReturned);
}
Stream_Free(s, TRUE);