Updated types

This commit is contained in:
Alex
2022-12-21 00:43:51 +02:00
parent 684b76a1ca
commit a677f3c159
62 changed files with 471 additions and 448 deletions

View File

@ -44,7 +44,7 @@ namespace FileSystem
private:
uint32_t getsize(const char *s)
{
uint64_t ret = 0;
uint32_t ret = 0;
while (*s)
{
ret *= 8;
@ -63,7 +63,7 @@ namespace FileSystem
}
public:
USTAR(uint64_t Address, Virtual *vfs);
USTAR(uintptr_t Address, Virtual *vfs);
~USTAR();
};
}