mirror of https://github.com/FDOS/kernel.git
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:
parent
93bc26d0d5
commit
0cdcac3359
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue