From 40104588f38250afde9f71b6204d789039bbfe3e Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Sat, 22 Oct 2022 19:19:39 +0200 Subject: Reformat code base This includes: - Wrap function implementations - Pointer alignment for function signatures - Pointer alignment for variable declarations - Whitespace after keywords - Whitespace after comma - Whitespace around initializers - Whitespace around operators - Code indentation - Line break for single line statements - Misleading alignment --- XUtils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'XUtils.h') diff --git a/XUtils.h b/XUtils.h index bb80cb23..e1c50be1 100644 --- a/XUtils.h +++ b/XUtils.h @@ -73,6 +73,6 @@ char* xStrndup(const char* str, size_t len) ATTR_NONNULL ATTR_MALLOC; ssize_t xReadfile(const char* pathname, void* buffer, size_t count); ssize_t xReadfileat(openat_arg_t dirfd, const char* pathname, void* buffer, size_t count); -ssize_t full_write(int fd, const void *buf, size_t count); +ssize_t full_write(int fd, const void* buf, size_t count); #endif -- cgit v1.2.3