aboutsummaryrefslogtreecommitdiff
path: root/zen/cmds/print.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2022-06-10 16:02:11 +0200
committerStefan Boberg <[email protected]>2022-06-10 16:02:11 +0200
commit1bfd27e78e1962779997a5da5dc7639fcb74fcc1 (patch)
treeab78d94247d25a6efbbb25facf63ed3ce98525f7 /zen/cmds/print.cpp
parentextended zen print command to also handle CbPackage and CompressedBuffer form... (diff)
downloadarchived-zen-1bfd27e78e1962779997a5da5dc7639fcb74fcc1.tar.xz
archived-zen-1bfd27e78e1962779997a5da5dc7639fcb74fcc1.zip
clang-format fixes
Diffstat (limited to 'zen/cmds/print.cpp')
-rw-r--r--zen/cmds/print.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/zen/cmds/print.cpp b/zen/cmds/print.cpp
index e5bb2ed4f..a8b2215a2 100644
--- a/zen/cmds/print.cpp
+++ b/zen/cmds/print.cpp
@@ -106,7 +106,9 @@ PrintCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv)
if (Attachment.IsCompressedBinary())
{
AttachmentType = "Compressed";
- AttachmentSize = fmt::format("{} ({} uncompressed)", Attachment.AsCompressedBinary().GetCompressedSize(), Attachment.AsCompressedBinary().GetRawSize());
+ AttachmentSize = fmt::format("{} ({} uncompressed)",
+ Attachment.AsCompressedBinary().GetCompressedSize(),
+ Attachment.AsCompressedBinary().GetRawSize());
}
else if (Attachment.IsBinary())
{