Skip to content

Commit

Permalink
make indent
Browse files Browse the repository at this point in the history
  • Loading branch information
robertswiecki committed Dec 2, 2023
1 parent d68db32 commit b740dcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -383,8 +383,8 @@ long setrlimit(int res, const struct rlimit64& newlim) {
return util::syscall(__NR_prlimit64, 0, res, (uintptr_t)&newlim, (uintptr_t) nullptr);
}

long getrlimit(int res, struct rlimit64* curlim) {
*curlim = {};
long getrlimit(int res, struct rlimit64* curlim) {
*curlim = {};
return util::syscall(__NR_prlimit64, 0, res, (uintptr_t) nullptr, (uintptr_t)curlim);
}

Expand Down

0 comments on commit b740dcf

Please sign in to comment.