OSDN Git Service

Add missing void argument for function declarations
authorTakashi Iwai <tiwai@suse.de>
Wed, 30 May 2012 13:22:36 +0000 (15:22 +0200)
committerHans de Goede <hdegoede@redhat.com>
Fri, 1 Jun 2012 15:51:52 +0000 (17:51 +0200)
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
libunimod/mloader.c

index 7cf5efa..876aaca 100644 (file)
@@ -527,7 +527,7 @@ SL_RegisterSample (SAMPLE * s, URL reader)
 }
 
 static void 
-FreeSampleList ()
+FreeSampleList (void)
 {
   SAMPLOAD *old, *s = musiclist;
 
@@ -543,7 +543,7 @@ FreeSampleList ()
 /* Returns the total amount of memory required by the musiclist queue. */
 #ifdef MAX_SAMPLESPACE
 static ULONG 
-SampleTotal ()
+SampleTotal (void)
 {
   int total = 0;
   SAMPLOAD *samplist = musiclist;