Fixed obvious typos.

svn path=/trunk/; revision=2527
This commit is contained in:
Eric Kohl 2002-01-18 22:43:51 +00:00
parent c78f940a00
commit c5c65dd160

View file

@ -51,7 +51,7 @@ LoadKernel(PCHAR szFileName, int nPos)
FilePointer = OpenFile(szFileName);
if (FilePointer == NULL)
{
strcat(szBuffer, szShortName);
strcpy(szBuffer, szShortName);
strcat(szBuffer, " not found.");
MessageBox(szBuffer);
return(FALSE);
@ -85,7 +85,7 @@ LoadDriver(PCHAR szFileName, int nPos)
FilePointer = OpenFile(szFileName);
if (FilePointer == NULL)
{
strcat(value, szFileName);
strcpy(value, szFileName);
strcat(value, " not found.");
MessageBox(value);
return(FALSE);
@ -123,7 +123,7 @@ LoadNlsFile(PCHAR szFileName, PCHAR szModuleName)
FilePointer = OpenFile(szFileName);
if (FilePointer == NULL)
{
strcat(value, szFileName);
strcpy(value, szFileName);
strcat(value, " not found.");
MessageBox(value);
return(FALSE);