]> git.ipfire.org Git - thirdparty/git.git/commitdiff
cat-file: merge two block into one
authorZheNing Hu <adlternative@gmail.com>
Thu, 3 Jun 2021 16:29:26 +0000 (16:29 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 3 Jun 2021 22:50:26 +0000 (07:50 +0900)
There are two "if (opt->all_objects)" blocks next
to each other, merge them into one to provide better
readability.

Helped-by: Jeff King <peff@peff.net>
Signed-off-by: ZheNing Hu <adlternative@gmail.com>
Acked-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/cat-file.c

index 02461bb5ea6f977193d3a361258fda1d1d1fd197..243fe6844bc67a2140900decc066247dac6935a0 100644 (file)
@@ -520,14 +520,11 @@ static int batch_objects(struct batch_options *opt)
                data.info.typep = &data.type;
 
        if (opt->all_objects) {
+               struct object_cb_data cb;
                struct object_info empty = OBJECT_INFO_INIT;
 
                if (!memcmp(&data.info, &empty, sizeof(empty)))
                        data.skip_object_info = 1;
-       }
-
-       if (opt->all_objects) {
-               struct object_cb_data cb;
 
                if (has_promisor_remote())
                        warning("This repository uses promisor remotes. Some objects may not be loaded.");