Replace fprintf() with g_critical().
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2884 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
3a8a600790
commit
e78b6a9b68
@ -6,6 +6,8 @@
|
||||
Expect GTK 2.10 libs to link against by default and remove GTK210
|
||||
flag. If anyone wants to build on Windows against GTK 2.6 or 2.8
|
||||
use 'make GTK280=1'.
|
||||
* src/support.c:
|
||||
Replace fprintf() with g_critical().
|
||||
|
||||
|
||||
2008-08-13 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
||||
|
@ -118,7 +118,7 @@ create_pixbuf (const gchar *filename)
|
||||
pixbuf = gdk_pixbuf_new_from_file (pathname, &error);
|
||||
if (!pixbuf)
|
||||
{
|
||||
fprintf (stderr, "Failed to load pixbuf file: %s: %s\n",
|
||||
g_critical ("Failed to load pixbuf file: %s: %s\n",
|
||||
pathname, error->message);
|
||||
g_error_free (error);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user