Silent down compiler.

This commit is contained in:
Romain Tartiere 2010-07-24 18:54:50 +00:00
parent e6d079d87a
commit 7f9f907bc2
3 changed files with 4 additions and 2 deletions

View file

@ -82,7 +82,7 @@ static const struct driver_callbacks drivers_callbacks_list[] = {
# define PRINT_HEX(pcTag, pbtData, szBytes) do { \
size_t __szPos; \
printf(" %s: ", pcTag); \
for (__szPos=0; __szPos < szBytes; __szPos++) { \
for (__szPos=0; __szPos < (size_t)(szBytes); __szPos++) { \
printf("%02x ",pbtData[__szPos]); \
} \
printf("\n"); \