aboutsummaryrefslogtreecommitdiff
path: root/libgfortran
diff options
context:
space:
mode:
authordannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4>2008-11-23 07:02:22 +0000
committerdannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4>2008-11-23 07:02:22 +0000
commit802c1d150e59bc66c317f8732bcf091fe7d415be (patch)
treed78cb01e9fa5e926f8e728c53d1b7129b7a76167 /libgfortran
parentcb5526cd76771c78bf232a61fcf3472e0faaf5fc (diff)
nessage.txt
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@142131 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran')
-rw-r--r--libgfortran/ChangeLog6
-rw-r--r--libgfortran/libgfortran.h2
2 files changed, 7 insertions, 1 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index 7a176ee10e6..353b88433c0 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,3 +1,9 @@
+2008-11-22 Danny Smith <dannysmith@users.sourceforge.net>
+
+ * libgfortran.h (__mingw_snprintf): Declare with gnu_printf
+ format attribute.
+
+
2008-11-22 Thomas Koenig <tkoenig@gcc.gnu.org>
PR libfortran/38225
diff --git a/libgfortran/libgfortran.h b/libgfortran/libgfortran.h
index d1a7df93ecd..aaa466713ea 100644
--- a/libgfortran/libgfortran.h
+++ b/libgfortran/libgfortran.h
@@ -113,7 +113,7 @@ typedef off_t gfc_offset;
__mingw_snprintf(), because the mingw headers currently don't have one. */
#if HAVE_MINGW_SNPRINTF
extern int __mingw_snprintf (char *, size_t, const char *, ...)
- __attribute__ ((format (printf, 3, 4)));
+ __attribute__ ((format (gnu_printf, 3, 4)));
#undef snprintf
#define snprintf __mingw_snprintf
#endif