Author: sir_richard Date: Tue Nov 23 16:40:10 2010 New Revision: 49734
URL: http://svn.reactos.org/svn/reactos?rev=49734&view=rev Log: [ARMLLB]: Make DbgPrint compatible so we can use debug.h.
Modified: trunk/reactos/boot/armllb/crtsupp.c
Modified: trunk/reactos/boot/armllb/crtsupp.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/armllb/crtsupp.c?rev=4... ============================================================================== --- trunk/reactos/boot/armllb/crtsupp.c [iso-8859-1] (original) +++ trunk/reactos/boot/armllb/crtsupp.c [iso-8859-1] Tue Nov 23 16:40:10 2010 @@ -40,7 +40,7 @@ return puts(printbuffer); }
-VOID +ULONG DbgPrint(const char *fmt, ...) { va_list args; @@ -52,6 +52,7 @@ va_end(args);
for (j = 0; j < i; j++) LlbSerialPutChar(Buffer[j]); + return 0; }
/* EOF */