summaryrefslogtreecommitdiff
path: root/bin/pax
diff options
context:
space:
mode:
Diffstat (limited to 'bin/pax')
-rw-r--r--bin/pax/tar.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/pax/tar.c b/bin/pax/tar.c
index d5a73f367ce..a41a6d4d0a0 100644
--- a/bin/pax/tar.c
+++ b/bin/pax/tar.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tar.c,v 1.76 2023/12/22 20:29:27 jca Exp $ */
+/* $OpenBSD: tar.c,v 1.77 2023/12/22 20:32:29 jca Exp $ */
/* $NetBSD: tar.c,v 1.5 1995/03/21 09:07:49 cgd Exp $ */
/*-
@@ -1461,8 +1461,7 @@ rd_size(off_t *size, const char *keyword, char *p)
const char *errstr;
/* Assume off_t is a long long. */
- *size = strtonum(p, 0, LLONG_MAX,
- &errstr);
+ *size = strtonum(p, 0, LLONG_MAX, &errstr);
if (errstr != NULL) {
paxwarn(1, "%s is %s: %s", keyword, errstr, p);
return -1;