From f266313cb78c471528f5c70ede6c02f0b300f88c Mon Sep 17 00:00:00 2001 From: Peter Hill Date: Mon, 15 Jan 2024 10:42:45 +0000 Subject: [PATCH] Fix warning about mismatched indentation between if/else statements --- nczarr_test/zmapio.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nczarr_test/zmapio.c b/nczarr_test/zmapio.c index bed4669fa2..836da67f33 100644 --- a/nczarr_test/zmapio.c +++ b/nczarr_test/zmapio.c @@ -369,10 +369,11 @@ objdump(void) printcontent(len,content,kind); break; case OK_CHUNK: - if(dumpoptions.meta_only) + if(dumpoptions.meta_only) { printf("..."); - else + } else { printcontent(len,content,kind); + } break; default: break; }