forked from len0rd/rockbox
janitorial: Use ATTRIBUTE_PRINTF(X,Y) instead of __attribute__((format(printf,X,Y)))
Change-Id: Ia66e7647bdd9e8e1c28b9d8636cae8db82825841
This commit is contained in:
parent
5c2de0b89c
commit
ac46684d7f
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ void simplelist_set_line_count(int lines);
|
||||||
/* get the current amount of lines shown */
|
/* get the current amount of lines shown */
|
||||||
int simplelist_get_line_count(void);
|
int simplelist_get_line_count(void);
|
||||||
/* add a line in the list. */
|
/* add a line in the list. */
|
||||||
void simplelist_addline(const char *fmt, ...) __attribute__((format(printf,1,2)));
|
void simplelist_addline(const char *fmt, ...) ATTRIBUTE_PRINTF(1,2);
|
||||||
|
|
||||||
/* setup the info struct. members not setup in this function need to be assigned manually
|
/* setup the info struct. members not setup in this function need to be assigned manually
|
||||||
members set in this function:
|
members set in this function:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue