Author: akv
Date: 2012-04-29 00:51:19 +0200 (Sun, 29 Apr 2012)
New Revision: 4206

Modified:
   branches/4175-enfuse/src/rs-enfuse.c
Log:
Fix warning about uninitialized usage.

Modified: branches/4175-enfuse/src/rs-enfuse.c
===================================================================
--- branches/4175-enfuse/src/rs-enfuse.c        2012-04-28 22:47:24 UTC (rev 
4205)
+++ branches/4175-enfuse/src/rs-enfuse.c        2012-04-28 22:51:19 UTC (rev 
4206)
@@ -112,7 +112,7 @@
 GList * export_images(GList *files, gboolean extend, gint dark, gfloat 
darkstep, gint bright, gfloat brightstep, gint boundingbox)
 {
   gint num_selected = g_list_length(files);
-  gint i;
+  gint i = 0;
   gchar *name;
 
   GString *output_str = g_string_new(g_get_tmp_dir());


_______________________________________________
Rawstudio-commit mailing list
[email protected]
http://rawstudio.org/cgi-bin/mailman/listinfo/rawstudio-commit

Reply via email to