ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/include/debug.h
(Generate patch)

Comparing BasiliskII/src/include/debug.h (file contents):
Revision 1.1 by cebix, 1999-10-03T14:16:26Z vs.
Revision 1.2 by cebix, 1999-10-04T22:38:12Z

# Line 32 | Line 32
32  
33   static void inline _cdecl winbug( char *s, ...)
34   {
35 <  va_list vargs;
35 >        va_list vargs;
36          char msg[1024], date[50], hours[50];
37 <  struct _timeb tstruct;
37 >        struct _timeb tstruct;
38  
39          _ftime( &tstruct );
40          _strtime( hours );
41          _strdate( date );
42 <        wsprintf( msg, "B2: %s %s:%03u ", date, hours, tstruct.millitm );
42 >        sprintf( msg, "B2: %s %s:%03u ", date, hours, tstruct.millitm );
43          
44          va_start( vargs, s );
45 <        wvsprintf( &msg[strlen(msg)], s, vargs );
45 >        vsprintf( &msg[strlen(msg)], s, vargs );
46          va_end( vargs );
47  
48          OutputDebugString(msg);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines