Refactor and code cleanup.

This commit is contained in:
2016-07-28 22:25:26 +01:00
parent c93d469da9
commit a63ba13b6b
199 changed files with 3614 additions and 3744 deletions

View File

@@ -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;