Fix small typo in fstrcpy

git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@399 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
Bart Oldeman 2002-08-03 01:51:15 +00:00
parent 93bc26d0d5
commit 0cdcac3359
1 changed files with 1 additions and 1 deletions

View File

@ -1194,7 +1194,7 @@ COUNT DosGetCuDir(UBYTE drive, BYTE FAR * s)
if (*cp == '\0')
s[0] = '\0';
else
fstrcpy(s, cp + 1, 64);
fstrcpy(s, cp + 1);
return SUCCESS;
}