From 5bb5442cd150a9f750dc8feb8210c71fc8eee276 Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Sun, 1 Sep 2024 13:55:25 +0300 Subject: [PATCH] src/vfs/tar/tar-xheader.c: indentation. Signed-off-by: Andrew Borodin --- src/vfs/tar/tar-xheader.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vfs/tar/tar-xheader.c b/src/vfs/tar/tar-xheader.c index ce70c26c2..ae7774e57 100644 --- a/src/vfs/tar/tar-xheader.c +++ b/src/vfs/tar/tar-xheader.c @@ -773,7 +773,7 @@ sparse_major_decoder (struct tar_stat_info *st, const char *keyword, const char (void) size; if (!decode_num (&u, arg, INTMAX_MAX, keyword)) - return FALSE; + return FALSE; st->sparse_major = u; return TRUE; @@ -789,7 +789,7 @@ sparse_minor_decoder (struct tar_stat_info *st, const char *keyword, const char (void) size; if (!decode_num (&u, arg, INTMAX_MAX, keyword)) - return FALSE; + return FALSE; st->sparse_minor = u; return TRUE;