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:
parent
8723ba7568
commit
3114f362df
@ -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 = { ");
|
||||
|
Loading…
Reference in New Issue
Block a user