Skip to content

Commit 75c30ce

Browse files
committed
clang-format
1 parent c66f276 commit 75c30ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ static inline void *check_allocation_result(void *x, size_t len)
3636

3737
static inline void *checked_calloc(size_t nmemb, size_t size)
3838
{
39-
void *x = (calloc)(nmemb, size);
39+
void *x = (calloc) (nmemb, size);
4040
check_allocation_result(x, nmemb);
4141
return x;
4242
}
4343

4444
static inline void *checked_realloc(void *p, size_t size)
4545
{
46-
void *x = (realloc)(p, size);
46+
void *x = (realloc) (p, size);
4747
check_allocation_result(x, size);
4848
return x;
4949
}

0 commit comments

Comments
 (0)