Revision: 1799 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1799&view=re... Author: colombanw Date: 2011-01-02 13:07:43 +0000 (Sun, 02 Jan 2011)
Log Message: ----------- GeanyGenDoc: Fix build failure on Windows introduced in r1794
Modified Paths: -------------- trunk/geany-plugins/geanygendoc/src/ggd-utils.c
Modified: trunk/geany-plugins/geanygendoc/src/ggd-utils.c =================================================================== --- trunk/geany-plugins/geanygendoc/src/ggd-utils.c 2011-01-01 00:42:23 UTC (rev 1798) +++ trunk/geany-plugins/geanygendoc/src/ggd-utils.c 2011-01-02 13:07:43 UTC (rev 1799) @@ -81,7 +81,7 @@ gboolean success = FALSE; gint fd_in;
- fd_in = g_open (input, O_RDONLY); + fd_in = g_open (input, O_RDONLY, 0); if (fd_in < 0) { set_file_error_from_errno (error, errno, input); } else {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
plugins-commits@lists.geany.org