Fixed compiling (Buffer -> buffer).

svn path=/trunk/; revision=7842
This commit is contained in:
Filip Navara 2004-01-23 16:51:41 +00:00
parent 6482583e26
commit 2c02c69455

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
/* $Id: install.c,v 1.7 2004/01/23 10:34:23 ekohl Exp $ /* $Id: install.c,v 1.8 2004/01/23 16:51:41 navaraf Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
@ -56,7 +56,7 @@ PSID AdminSid = NULL;
void void
DebugPrint(char* fmt,...) DebugPrint(char* fmt,...)
{ {
char Buffer[512]; char buffer[512];
va_list ap; va_list ap;
va_start(ap, fmt); va_start(ap, fmt);
@ -68,7 +68,7 @@ DebugPrint(char* fmt,...)
#else #else
strcat (buffer, "\nRebooting now!"); strcat (buffer, "\nRebooting now!");
MessageBoxA (NULL, MessageBoxA (NULL,
Buffer, buffer,
"ReactOS Setup", "ReactOS Setup",
MB_OK); MB_OK);
#endif #endif