1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

lint: fix invalidPrintfArgType_sint warning

This commit is contained in:
Hinnerk van Bruinehsen 2014-10-16 16:29:23 +02:00
parent 8723ba7568
commit 3114f362df

View File

@ -66,7 +66,7 @@ int main()
vInts.push_back(1);
vInts.push_back(3);
vInts.push_back(2);
printf("The vector vInts has been filled with %d numbers.\n", vInts.size());
printf("The vector vInts has been filled with %d numbers.\n", (int)vInts.size());
printf("\n-= Test iterator =-\n");
printf("The content of vInts = { ");