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
commit23598255d43573098b90a7625f4942ad9f12d8fa (patch)
treeab7fbbf3253d4c0e2793218f09378908beb025fb /util/system/mutex.cpp
parent8d946d7b138517635aca5cf7236c136e11f7c167 (diff)
downloadydb-23598255d43573098b90a7625f4942ad9f12d8fa.tar.gz
Restoring authorship annotation for <oplachkin@yandex-team.ru>. Commit 2 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 cf4c840c7b..4041402db9 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) << ")";