Skip to content

Commit

Permalink
Fix warning about mismatched indentation between if/else statements
Browse files Browse the repository at this point in the history
  • Loading branch information
ZedThree committed Jan 15, 2024
1 parent d51f80c commit f266313
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions nczarr_test/zmapio.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit f266313

Please sign in to comment.