Skip to content

Commit

Permalink
format code with clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
zimirza committed Jan 1, 2025
1 parent 9c62f4b commit dada1e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libc/src/time/ctime_r.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ LLVM_LIBC_FUNCTION(char *, ctime_r, (const time_t *t_ptr, char *buffer)) {
return nullptr;
}

return time_utils::asctime(time_utils::localtime_internal(t_ptr, &tm_out), buffer,
TimeConstants::ASCTIME_MAX_BYTES);
return time_utils::asctime(time_utils::localtime_internal(t_ptr, &tm_out),
buffer, TimeConstants::ASCTIME_MAX_BYTES);
}

} // namespace LIBC_NAMESPACE_DECL

0 comments on commit dada1e2

Please sign in to comment.