diff options
author | uzhas <uzhas@ydb.tech> | 2023-11-02 15:42:55 +0300 |
---|---|---|
committer | uzhas <uzhas@ydb.tech> | 2023-11-02 16:54:43 +0300 |
commit | 42266add2eaf5777d921fe4e7fd19eef4de73b04 (patch) | |
tree | 195dd9c1c58d635b637c473c851356107580054a | |
parent | d4ec9ad0ad93850fa81d9e78298066d138aba60f (diff) | |
download | ydb-42266add2eaf5777d921fe4e7fd19eef4de73b04.tar.gz |
fix coverity issue: dead code
-rw-r--r-- | ydb/core/tracing/signal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/tracing/signal.h b/ydb/core/tracing/signal.h index 7f317436e9..8bf186b53a 100644 --- a/ydb/core/tracing/signal.h +++ b/ydb/core/tracing/signal.h @@ -32,7 +32,7 @@ inline TStringBuilder& operator<<(TStringBuilder& o, const TPad<3>& p) { if (p.I >= 0) { if (p.I < 10) { o << '0' << '0'; - } else if (p.I < 10) { + } else { o << '0'; } } |