sim-card
/
sam7-util
Archived
10
0
Fork 0

io.c: remove warning on format string.

Signed-off-by: Diego Elio Pettenò <flameeyes@flameeyes.eu>
This commit is contained in:
Diego Elio Pettenò 2012-07-04 15:57:05 -07:00 committed by Holger Hans Peter Freyther
parent 432e5a6c2f
commit dcf2783266
1 changed files with 1 additions and 1 deletions

2
io.c
View File

@ -22,7 +22,7 @@ static int last_driver = 0;
int io_driver_register(struct io_driver *driver)
{
if (last_driver > ARRAY_SIZE(drivers)) {
fprintf(stderr, "Registered more than %d devices.\n",
fprintf(stderr, "Registered more than %zu devices.\n",
ARRAY_SIZE(drivers));
return -1;
}