diff options
author | Hans Breuer <hans@breuer.org> | 2008-06-13 08:27:02 +0000 |
---|---|---|
committer | Hans Breuer <hans@src.gnome.org> | 2008-06-13 08:27:02 +0000 |
commit | e0c1ab3f39aff64d3b00a66263a8592243ea4076 (patch) | |
tree | 938dc590a8ac265d0caf2a8a38ceaaaf468098d0 /gdk-pixbuf/io-tiff.c | |
parent | 6302384106e28b27c4c01e3dcf977a1e86476eea (diff) | |
download | gtk+-e0c1ab3f39aff64d3b00a66263a8592243ea4076.tar.gz |
updated to allow simple switch between gdiplus- and former fileformat
2008-06-13 Hans Breuer <hans@breuer.org>
* makefile.msc : updated to allow simple switch between gdiplus- and
former fileformat backends
* io-tiff.c : use g_snprintf
svn path=/trunk/; revision=20369
Diffstat (limited to 'gdk-pixbuf/io-tiff.c')
-rw-r--r-- | gdk-pixbuf/io-tiff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/io-tiff.c b/gdk-pixbuf/io-tiff.c index 64da064883..84ddd0266f 100644 --- a/gdk-pixbuf/io-tiff.c +++ b/gdk-pixbuf/io-tiff.c @@ -262,7 +262,7 @@ tiff_image_parse (TIFF *tiff, TiffContext *context, GError **error) if (transform > 0 ) { gchar str[5]; - snprintf (str, sizeof (str), "%d", transform); + g_snprintf (str, sizeof (str), "%d", transform); gdk_pixbuf_set_option (pixbuf, "orientation", str); } |