[ox/fs] Replace uint8_t with char for buffers

This commit is contained in:
2020-02-11 21:42:09 -06:00
parent 90f94dbfc2
commit 553cde0d0c
4 changed files with 11 additions and 11 deletions

View File

@ -72,7 +72,7 @@ class PassThroughFS: public FileSystem {
uint64_t size() const override;
uint8_t *buff() override;
char *buff() override;
ox::Error walk(Error(*cb)(uint8_t, uint64_t, uint64_t)) override;