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 /mandoc_aux.h | |
parent | 43757c82b3a7a65d2481fe9ff6efb2970e685827 (diff) | |
download | mandoc-54d735ad40551c65097fc14a04f450620d23bad0.tar.gz |
Be consistent in protecting __attribute__ attributes with __;
from Christos Zoulas <christos @ NetBSD>.
Diffstat (limited to 'mandoc_aux.h')
-rw-r--r-- | mandoc_aux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mandoc_aux.h b/mandoc_aux.h index b6a70ae9..3742c412 100644 --- a/mandoc_aux.h +++ b/mandoc_aux.h @@ -17,7 +17,7 @@ */ int mandoc_asprintf(char **, const char *, ...) - __attribute__((__format__ (printf, 2, 3))); + __attribute__((__format__ (__printf__, 2, 3))); void *mandoc_calloc(size_t, size_t); void *mandoc_malloc(size_t); void *mandoc_realloc(void *, size_t); |