diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-02-17 14:31:52 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-02-17 14:31:52 +0000 |
commit | 54d735ad40551c65097fc14a04f450620d23bad0 (patch) | |
tree | e9025d70c3b21dbeb9cf80cea915660edffb3ef2 /term_ps.c | |
parent | 43757c82b3a7a65d2481fe9ff6efb2970e685827 (diff) | |
download | mandoc-54d735ad40551c65097fc14a04f450620d23bad0.tar.gz |
Be consistent in protecting __attribute__ attributes with __;
from Christos Zoulas <christos @ NetBSD>.
Diffstat (limited to 'term_ps.c')
-rw-r--r-- | term_ps.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -104,7 +104,7 @@ static void ps_pclose(struct termp *); static void ps_plast(struct termp *); static void ps_pletter(struct termp *, int); static void ps_printf(struct termp *, const char *, ...) - __attribute__((__format__ (printf, 2, 3))); + __attribute__((__format__ (__printf__, 2, 3))); static void ps_putchar(struct termp *, char); static void ps_setfont(struct termp *, enum termfont); static void ps_setwidth(struct termp *, int, int); |