summaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/misc/source_location.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/yt/misc/source_location.cpp')
-rw-r--r--library/cpp/yt/misc/source_location.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/yt/misc/source_location.cpp b/library/cpp/yt/misc/source_location.cpp
index e65a382b1b7..8d22d43636c 100644
--- a/library/cpp/yt/misc/source_location.cpp
+++ b/library/cpp/yt/misc/source_location.cpp
@@ -27,7 +27,7 @@ bool TSourceLocation::operator<(const TSourceLocation& other) const
const char* otherFileName = other.FileName_ ? other.FileName_ : "";
int fileNameResult = strcmp(fileName, otherFileName);
if (fileNameResult != 0) {
- return fileNameResult < 0;
+ return fileNameResult < 0;
}
if (Line_ < other.Line_) {