mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Fix a typo in GetPathLengthMax
This commit is contained in:
parent
279f86d910
commit
c03e4d3f71
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ public static class UserFileSystemPrivate
|
||||||
int retValue = 0;
|
int retValue = 0;
|
||||||
bool hasRetValue = false;
|
bool hasRetValue = false;
|
||||||
SetOrChangeMin(ref retValue, ref hasRetValue, attribute.DirectoryPathLengthMax, attribute.DirectoryPathLengthMaxHasValue);
|
SetOrChangeMin(ref retValue, ref hasRetValue, attribute.DirectoryPathLengthMax, attribute.DirectoryPathLengthMaxHasValue);
|
||||||
SetOrChangeMin(ref retValue, ref hasRetValue, attribute.FilePathLengthMax, attribute.FileNameLengthMaxHasValue);
|
SetOrChangeMin(ref retValue, ref hasRetValue, attribute.FilePathLengthMax, attribute.FilePathLengthMaxHasValue);
|
||||||
SetOrChangeMin(ref retValue, ref hasRetValue, FspPath.MaxLength, true);
|
SetOrChangeMin(ref retValue, ref hasRetValue, FspPath.MaxLength, true);
|
||||||
|
|
||||||
Assert.SdkAssert(hasRetValue);
|
Assert.SdkAssert(hasRetValue);
|
||||||
|
|
Loading…
Reference in a new issue