forked from len0rd/rockbox
Changed the size argument to be a size_t type, to make the prototype look
like the system one as otherwise the compiler complains a lot. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@805 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d69cb5545f
commit
e29d0307cb
1 changed files with 2 additions and 2 deletions
|
@ -20,6 +20,6 @@
|
||||||
#ifndef __SPRINTF_H__
|
#ifndef __SPRINTF_H__
|
||||||
#define __SPRINTF_H__
|
#define __SPRINTF_H__
|
||||||
|
|
||||||
int snprintf (char *buf, int size, const char *fmt, ...);
|
int snprintf (char *buf, size_t size, const char *fmt, ...);
|
||||||
|
|
||||||
#endif /* __SPRINTF_H__ */
|
#endif /* __SPRINTF_H__ */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue