change FsStorage* f to FsStorage* s

This commit is contained in:
tesnos 2018-07-09 21:02:57 -04:00
parent 7d36668d21
commit fe2f9ffd8e
2 changed files with 3 additions and 3 deletions

View File

@ -197,7 +197,7 @@ void fsDirClose(FsDir* d);
// IStorage
Result fsStorageRead(FsStorage* s, u64 off, void* buf, size_t len);
Result fsStorageGetSize(FsStorage* f, u64* out);
Result fsStorageGetSize(FsStorage* s, u64* out);
void fsStorageClose(FsStorage* s);
// ISaveDataInfoReader

View File

@ -1143,7 +1143,7 @@ Result fsStorageRead(FsStorage* s, u64 off, void* buf, size_t len) {
return rc;
}
Result fsStorageGetSize(FsStorage* f, u64* out) {
Result fsStorageGetSize(FsStorage* s, u64* out) {
IpcCommand c;
ipcInitialize(&c);
@ -1157,7 +1157,7 @@ Result fsStorageGetSize(FsStorage* f, u64* out) {
raw->magic = SFCI_MAGIC;
raw->cmd_id = 4;
Result rc = serviceIpcDispatch(&f->s);
Result rc = serviceIpcDispatch(&s->s);
if (R_SUCCEEDED(rc)) {
IpcParsedCommand r;