mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Refactor and code cleanup.
This commit is contained in:
@@ -46,7 +46,7 @@ namespace DiscImageChef.Filesystems.LisaFS
|
||||
|
||||
public override Errno ReadDir(string path, ref List<string> contents)
|
||||
{
|
||||
Int16 fileId;
|
||||
short fileId;
|
||||
bool isDir;
|
||||
Errno error = LookupFileId(path, out fileId, out isDir);
|
||||
if(error != Errno.NoError)
|
||||
@@ -75,7 +75,7 @@ namespace DiscImageChef.Filesystems.LisaFS
|
||||
return Errno.NoError;
|
||||
}
|
||||
|
||||
Errno ReadCatalog(Int16 fileId, out List<CatalogEntry> catalog)
|
||||
Errno ReadCatalog(short fileId, out List<CatalogEntry> catalog)
|
||||
{
|
||||
catalog = null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user