diff options
author | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-14 16:28:55 +0000 |
---|---|---|
committer | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-14 16:28:55 +0000 |
commit | 9a7c76f93e617b1bdadd87a9917e1649e4130aba (patch) | |
tree | 8c82c5342d450485ff4219e97dfc540749fa4e5a /libcpp/include | |
parent | e0e707af99aa8fc8807c7663b9ada357fa603a1b (diff) | |
download | gcc-9a7c76f93e617b1bdadd87a9917e1649e4130aba.tar.gz |
* include/cpplib.h (struct cpp_callbacks): Annotate error with
ATTRIBUTE_FPTR_PRINTF(3,0) instead of ATTRIBUTE_PRINTF(3,0).
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@106891 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp/include')
-rw-r--r-- | libcpp/include/cpplib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcpp/include/cpplib.h b/libcpp/include/cpplib.h index adae96b3560..9ec022f6dfc 100644 --- a/libcpp/include/cpplib.h +++ b/libcpp/include/cpplib.h @@ -474,7 +474,7 @@ struct cpp_callbacks /* Called to emit a diagnostic if client_diagnostic option is true. This callback receives the translated message. */ void (*error) (cpp_reader *, int, const char *, va_list *) - ATTRIBUTE_PRINTF(3,0); + ATTRIBUTE_FPTR_PRINTF(3,0); }; /* Chain of directories to look for include files in. */ |