mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
Fixed obvious typos.
svn path=/trunk/; revision=2527
This commit is contained in:
parent
c78f940a00
commit
c5c65dd160
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue