This fixes a warning in 64 architectures (NULL in 64 bits, gint is 32).
Cheers, Rafael
Index: src/filename.c =================================================================== --- src/filename.c (revision 1757) +++ src/filename.c (working copy) @@ -157,7 +157,7 @@ } } - temp[m] = (gint) NULL; + temp[m] = '\0'; if (output) g_free(output);
_______________________________________________ Rawstudio-dev mailing list [email protected] http://rawstudio.org/cgi-bin/mailman/listinfo/rawstudio-dev
