Added missing definition.
authorEric Kohl <eric.kohl@reactos.org>
Sat, 28 Aug 1999 23:30:50 +0000 (23:30 +0000)
committerEric Kohl <eric.kohl@reactos.org>
Sat, 28 Aug 1999 23:30:50 +0000 (23:30 +0000)
svn path=/trunk/; revision=628

reactos/apps/utils/cmd/console.c
rosapps/cmd/console.c

index 931a7ef..6010941 100644 (file)
@@ -25,6 +25,7 @@ VOID DebugPrintf (LPTSTR szFormat, ...)
 {
        TCHAR szOut[512];
        va_list arg_ptr;
 {
        TCHAR szOut[512];
        va_list arg_ptr;
+       DWORD dwWritten;
 
        va_start (arg_ptr, szFormat);
        _vstprintf (szOut, szFormat, arg_ptr);
 
        va_start (arg_ptr, szFormat);
        _vstprintf (szOut, szFormat, arg_ptr);
index 51260fb..68919e0 100644 (file)
@@ -25,6 +25,7 @@ VOID DebugPrintf (LPTSTR szFormat, ...)
 {
        TCHAR szOut[512];
        va_list arg_ptr;
 {
        TCHAR szOut[512];
        va_list arg_ptr;
+       DWORD dwWritten;
 
        va_start (arg_ptr, szFormat);
        _vstprintf (szOut, szFormat, arg_ptr);
 
        va_start (arg_ptr, szFormat);
        _vstprintf (szOut, szFormat, arg_ptr);