aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/mutex.cpp
diff options
context:
space:
mode:
authoroplachkin <oplachkin@yandex-team.ru>2022-02-10 16:51:46 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:51:46 +0300
commit8d946d7b138517635aca5cf7236c136e11f7c167 (patch)
tree7745b1c8466604b8b0b50daa7aa01d504ba1f363 /util/system/mutex.cpp
parentd96d43aa41d3bdd060cd182ca9c472e667bfcf2c (diff)
downloadydb-8d946d7b138517635aca5cf7236c136e11f7c167.tar.gz
Restoring authorship annotation for <oplachkin@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/system/mutex.cpp')
-rw-r--r--util/system/mutex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/system/mutex.cpp b/util/system/mutex.cpp
index 4041402db9..cf4c840c7b 100644
--- a/util/system/mutex.cpp
+++ b/util/system/mutex.cpp
@@ -21,7 +21,7 @@ public:
inline T() {
int result;
- memset(&Attr, 0, sizeof(Attr));
+ memset(&Attr, 0, sizeof(Attr));
result = pthread_mutexattr_init(&Attr);
if (result != 0) {
ythrow yexception() << "mutexattr init failed(" << LastSystemErrorText(result) << ")";