aboutsummaryrefslogtreecommitdiffstats
path: root/library
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
commit08c7e74c9a5733e9386c70df42b3e8ca848f2dc1 (patch)
tree8bf231c94cb3a8f9db9031bc1e09293b051ca27b /library
parent04370768250bba4a2409c969f796f51450756156 (diff)
downloadydb-08c7e74c9a5733e9386c70df42b3e8ca848f2dc1.tar.gz
Restoring authorship annotation for <aep@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library')
-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 0cdc774e78..fe9cbe12a1 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])