Recommented vprintf out. Not strictly needed but I should figure out what to

do here eventually.

svn path=/trunk/; revision=13814
This commit is contained in:
Art Yerkes 2005-03-04 04:57:42 +00:00
parent ac309256c3
commit bb41c20ca7

View file

@ -134,7 +134,9 @@ static inline int bsd_log ( int blah, const char* fmt, ... )
va_list arg;
int i;
va_start(arg, fmt);
#ifndef __NTDRIVER__
i = vprintf ( fmt, arg );
#endif
va_end(arg);
return i;
}