Use correct prototype for DbgPrint. Thanks to Hartmut for pointing this out.
[reactos.git] / reactos / lib / inflib / infhostglue.c
index 9aba2a7..6db00e4 100644 (file)
 #define NDEBUG
 #include <debug.h>
 
-void
-DbgPrint(const char *Fmt, ...)
+unsigned long
+DbgPrint(char *Fmt, ...)
 {
   va_list Args;
 
   va_start(Args, Fmt);
   vfprintf(stderr, Fmt, Args);
   va_end(Args);
+
+  return 0;
 }
 
 /* EOF */