mirror of
https://github.com/pocoproject/poco.git
synced 2025-02-20 22:31:23 +01:00
style fixes
This commit is contained in:
parent
f11bf77505
commit
5cc3ef7086
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user