gimp r27103 - in trunk: . plug-ins/file-uri



Author: neo
Date: Thu Oct  2 06:38:44 2008
New Revision: 27103
URL: http://svn.gnome.org/viewvc/gimp?rev=27103&view=rev

Log:
2008-10-02  Sven Neumann  <sven gimp org>

	* plug-ins/file-uri/uri-backend-wget.c: removed spurious commas
	that broke the build.



Modified:
   trunk/ChangeLog
   trunk/plug-ins/file-uri/uri-backend-wget.c

Modified: trunk/plug-ins/file-uri/uri-backend-wget.c
==============================================================================
--- trunk/plug-ins/file-uri/uri-backend-wget.c	(original)
+++ trunk/plug-ins/file-uri/uri-backend-wget.c	Thu Oct  2 06:38:44 2008
@@ -91,7 +91,7 @@
 
   if (pipe (p) != 0)
     {
-      g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,,
+      g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
                    "pipe() failed: %s", g_strerror (errno));
       return FALSE;
     }
@@ -101,7 +101,7 @@
 
   if ((pid = fork()) < 0)
     {
-      g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,,
+      g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
                    "fork() failed: %s", g_strerror (errno));
       return FALSE;
     }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]