git: bac9d7e8f293 - main - libc: minor style, wrap long lines
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 23 Apr 2024 19:44:25 UTC
The branch main has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=bac9d7e8f2931149815c3d5a9ab69594bbdffde6
commit bac9d7e8f2931149815c3d5a9ab69594bbdffde6
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2024-04-23 17:14:34 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2024-04-23 19:44:07 +0000
libc: minor style, wrap long lines
Reviewed by: imp
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Differential revision: https://reviews.freebsd.org/D44916
---
lib/libc/stdio/xprintf_errno.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/lib/libc/stdio/xprintf_errno.c b/lib/libc/stdio/xprintf_errno.c
index db897328f0fe..c63a7afd35e0 100644
--- a/lib/libc/stdio/xprintf_errno.c
+++ b/lib/libc/stdio/xprintf_errno.c
@@ -38,7 +38,8 @@
#include "printf.h"
int
-__printf_arginfo_errno(const struct printf_info *pi __unused, size_t n, int *argt)
+__printf_arginfo_errno(const struct printf_info *pi __unused, size_t n,
+ int *argt)
{
assert(n >= 1);
@@ -47,7 +48,8 @@ __printf_arginfo_errno(const struct printf_info *pi __unused, size_t n, int *arg
}
int
-__printf_render_errno(struct __printf_io *io, const struct printf_info *pi __unused, const void *const *arg)
+__printf_render_errno(struct __printf_io *io, const struct printf_info *pi
+ __unused, const void *const *arg)
{
int ret, error;
char buf[64];