mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Prefer the __printflike() macro to GCC's __attribute__ stuff.
This commit is contained in:
parent
2ef4a436e0
commit
4eb55c7adc
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ extern struct dosDirEntry *rootDir;
|
|||
/*
|
||||
* function declarations
|
||||
*/
|
||||
int ask(int, const char *, ...) __attribute__((__format__(__printf__,2,3)));
|
||||
int ask(int, const char *, ...) __printflike(2, 3);
|
||||
|
||||
/*
|
||||
* Check the dirty flag. If the file system is clean, then return 1.
|
||||
|
|
|
|||
Loading…
Reference in a new issue