aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraep <aep@yandex-team.ru>2022-02-10 16:50:55 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:55 +0300
commit9af381bde4f1a728d35e96258577599797f8e7c0 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8
parent08c7e74c9a5733e9386c70df42b3e8ca848f2dc1 (diff)
downloadydb-9af381bde4f1a728d35e96258577599797f8e7c0.tar.gz
Restoring authorship annotation for <aep@yandex-team.ru>. Commit 2 of 2.
-rw-r--r--library/cpp/getopt/small/opt2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/getopt/small/opt2.cpp b/library/cpp/getopt/small/opt2.cpp
index fe9cbe12a1..0cdc774e78 100644
--- a/library/cpp/getopt/small/opt2.cpp
+++ b/library/cpp/getopt/small/opt2.cpp
@@ -66,7 +66,7 @@ void Opt2::EatArgv(const char* optspec, const char* long_alias) {
char* comma = strchr(s, ',');
if (comma)
*comma = 0;
- if (!eq || (comma && comma < eq))
+ if (!eq || (comma && comma < eq))
ythrow yexception() << "Opt2, long_alias: '=' is expected after " << s;
*eq++ = 0;
if (!*eq || eq[1])