diff options
author | stefanf <stefanf@FreeBSD.org> | 2005-03-09 10:10:51 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2005-03-09 10:10:51 +0000 |
commit | 2eaa74ad2267587dc183f71b6cea0353f60e7b87 (patch) | |
tree | 2b5c995ecc749c054bfbf9072a7fe5a2da34140f /sbin/fsck_msdosfs | |
parent | 41e08b3800138e174d79cbe2843b26384aa5ddb9 (diff) | |
download | FreeBSD-src-2eaa74ad2267587dc183f71b6cea0353f60e7b87.zip FreeBSD-src-2eaa74ad2267587dc183f71b6cea0353f60e7b87.tar.gz |
Prefer the __printflike() macro to GCC's __attribute__ stuff.
Diffstat (limited to 'sbin/fsck_msdosfs')
-rw-r--r-- | sbin/fsck_msdosfs/ext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/fsck_msdosfs/ext.h b/sbin/fsck_msdosfs/ext.h index 0e93c24..53127cf 100644 --- a/sbin/fsck_msdosfs/ext.h +++ b/sbin/fsck_msdosfs/ext.h @@ -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. |