Coding style change in fsOpenFileSystemWithId

This commit is contained in:
Rajko Stojadinovic 2018-07-28 17:46:43 +02:00
parent ef704044ae
commit 13f2b3ff80

View File

@ -431,9 +431,8 @@ Result fsOpenFileSystem(FsFileSystem* out, u64 titleId, FsFileSystemType fsType)
} }
Result fsOpenFileSystemWithId(FsFileSystem* out, u64 titleId, FsFileSystemType fsType, const char* contentPath) { Result fsOpenFileSystemWithId(FsFileSystem* out, u64 titleId, FsFileSystemType fsType, const char* contentPath) {
char sendStr[FS_MAX_PATH]; char sendStr[FS_MAX_PATH] = {0};
strncpy(sendStr, contentPath, sizeof(sendStr)-1); strncpy(sendStr, contentPath, sizeof(sendStr)-1);
sendStr[sizeof(sendStr)-1] = 0;
IpcCommand c; IpcCommand c;
ipcInitialize(&c); ipcInitialize(&c);