Revision: 1279
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1279&view=rev
Author:   zas_
Date:     2008-11-27 12:30:49 +0000 (Thu, 27 Nov 2008)

Log Message:
-----------
Fix up not a prototype warning.

Modified Paths:
--------------
    trunk/src/image-load.c

Modified: trunk/src/image-load.c
===================================================================
--- trunk/src/image-load.c      2008-11-27 12:30:10 UTC (rev 1278)
+++ trunk/src/image-load.c      2008-11-27 12:30:49 UTC (rev 1279)
@@ -771,14 +771,14 @@
 static gint image_loader_prio_num = 0;
 
 
-static void image_loader_thread_enter_high()
+static void image_loader_thread_enter_high(void)
 {
        g_mutex_lock(image_loader_prio_mutex);
        image_loader_prio_num++;
        g_mutex_unlock(image_loader_prio_mutex);
 }
 
-static void image_loader_thread_leave_high()
+static void image_loader_thread_leave_high(void)
 {
        g_mutex_lock(image_loader_prio_mutex);
        image_loader_prio_num--;
@@ -786,7 +786,7 @@
        g_mutex_unlock(image_loader_prio_mutex);
 }
 
-static void image_loader_thread_wait_high()
+static void image_loader_thread_wait_high(void)
 {
        g_mutex_lock(image_loader_prio_mutex);
        while (image_loader_prio_num) 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Geeqie-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geeqie-svn

Reply via email to