diff options
author | vvvv <[email protected]> | 2025-10-06 11:26:09 +0300 |
---|---|---|
committer | vvvv <[email protected]> | 2025-10-06 11:53:26 +0300 |
commit | 60f45e69a4d7dbc6131208e16c45faf35aa5a985 (patch) | |
tree | 4daa45b52c295a178c7620e4c93921465fcf7950 /yql/essentials/utils/md5_stream.cpp | |
parent | 1bded1a65a7e6e9171418f3e1c691d390125b64e (diff) |
YQL-20086 utils
init
commit_hash:54feccd520ebd0ab23612bc0cb830914dff9d0e8
Diffstat (limited to 'yql/essentials/utils/md5_stream.cpp')
-rw-r--r-- | yql/essentials/utils/md5_stream.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yql/essentials/utils/md5_stream.cpp b/yql/essentials/utils/md5_stream.cpp index 8a1c2191645..10e7bd07c9c 100644 --- a/yql/essentials/utils/md5_stream.cpp +++ b/yql/essentials/utils/md5_stream.cpp @@ -8,7 +8,7 @@ TMd5OutputStream::TMd5OutputStream(IOutputStream& delegatee) } TString TMd5OutputStream::Finalize() { - char buf[33] = { 0 }; + char buf[33] = {0}; return TString(Accumulator_.End(buf)); } @@ -17,4 +17,4 @@ void TMd5OutputStream::DoWrite(const void* buf, size_t len) { Accumulator_.Update(buf, len); } -} +} // namespace NYql |