diff vidix/sysdep/AsmMacros_x86.h @ 29212:eda346733b8c

Add missing 'void' to parameterless function declarations.
author diego
date Mon, 04 May 2009 17:35:26 +0000
parents b5a46071062a
children 0f1b5b68af32
line wrap: on
line diff
--- a/vidix/sysdep/AsmMacros_x86.h	Mon May 04 16:56:36 2009 +0000
+++ b/vidix/sysdep/AsmMacros_x86.h	Mon May 04 17:35:26 2009 +0000
@@ -321,7 +321,7 @@
    return ret;
 }
 
-static __inline__ void intr_disable()
+static __inline__ void intr_disable(void)
 {
 #ifdef CONFIG_SVGAHELPER
     if (svgahelper_initialized == 1)
@@ -330,7 +330,7 @@
   __asm__ volatile("cli");
 }
 
-static __inline__ void intr_enable()
+static __inline__ void intr_enable(void)
 {
 #ifdef CONFIG_SVGAHELPER
     if (svgahelper_initialized == 1)