Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
Change-Id: Ibdff656e03a4e3a2012c6dd333ec56ddbf337ca0
  • Loading branch information
madhurajayaraman committed May 22, 2024
1 parent 9b43cf6 commit 1c96dfb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions starboard/shared/win32/posix_emu/dirent.cc
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ const std::size_t kDirectoryInfoBufferSize =
kSbFileMaxPath + sizeof(FILE_ID_BOTH_DIR_INFO);

int readdir_r(DIR* __restrict dir,
struct dirent* __restrict dirent_buf,
struct dirent** __restrict dirent) {
struct dirent* __restrict dirent_buf,
struct dirent** __restrict dirent) {
if (!dir) {
return -1;
}
Expand Down Expand Up @@ -121,7 +121,7 @@ int readdir_r(DIR* __restrict dir,
if (starboard::strlcpy((*dirent)->d_name, filename, kSbFileMaxName)) {
return -1;
}

return 0;
}

Expand Down

0 comments on commit 1c96dfb

Please sign in to comment.