From 5cc3ef7086a27e96240d51b45008335932ea5525 Mon Sep 17 00:00:00 2001 From: Aleksandar Fabijanic Date: Tue, 29 Mar 2016 22:02:40 -0700 Subject: [PATCH] style fixes --- Zip/src/ZipDataInfo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Zip/src/ZipDataInfo.cpp b/Zip/src/ZipDataInfo.cpp index 833d595a8..c2b6bf645 100644 --- a/Zip/src/ZipDataInfo.cpp +++ b/Zip/src/ZipDataInfo.cpp @@ -47,7 +47,7 @@ ZipDataInfo::ZipDataInfo(std::istream& in, bool assumeHeaderRead): else { in.read(_rawInfo, ZipCommon::HEADER_SIZE); - if ((! in) || (in.gcount() != ZipCommon::HEADER_SIZE)) + if ((!in) || (in.gcount() != ZipCommon::HEADER_SIZE)) return; } poco_assert (std::memcmp(_rawInfo, HEADER, ZipCommon::HEADER_SIZE) == 0); @@ -87,7 +87,7 @@ ZipDataInfo64::ZipDataInfo64(std::istream& in, bool assumeHeaderRead): else { in.read(_rawInfo, ZipCommon::HEADER_SIZE); - if ((! in) || (in.gcount() != ZipCommon::HEADER_SIZE)) + if ((!in) || (in.gcount() != ZipCommon::HEADER_SIZE)) return; } poco_assert (std::memcmp(_rawInfo, HEADER, ZipCommon::HEADER_SIZE) == 0);