plug-ins: Fix warning about usage of uninitialized variable

This commit is contained in:
Martin Nordholts 2011-01-26 08:05:34 +01:00
parent ac773489e4
commit d9b24bb1f3
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ save_image (const gchar *filename,
const gchar *newline = "\"\n\t\""; const gchar *newline = "\"\n\t\"";
gchar buf[4]; gchar buf[4];
guchar *d = NULL; guchar *d = NULL;
guchar *data; guchar *data = NULL;
guchar *cmap; guchar *cmap;
gint colors; gint colors;