diff options
author | Yaniv Kaul <ykaul@redhat.com> | 2018-07-30 20:43:24 +0300 |
---|---|---|
committer | Niels de Vos <ndevos@redhat.com> | 2018-08-19 10:03:23 +0000 |
commit | 23e2a420f90c4d39386a0c0c2a8bea0e376ab070 (patch) | |
tree | 923c5a8fba925e8bc370860f068ae1773c9cf381 /libglusterfs/src/dict.c | |
parent | c9bde3021202f1d5c5a2d19ac05a510fc1f788ac (diff) |
dict.c: copy-pasta fix (dict -> data)
Change-Id: Ifda14a1cc01e0fa99ff20d710eccb43296e22955
updates: bz#1193929
Signed-off-by: Yaniv Kaul <ykaul@redhat.com>
Diffstat (limited to 'libglusterfs/src/dict.c')
-rw-r--r-- | libglusterfs/src/dict.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libglusterfs/src/dict.c b/libglusterfs/src/dict.c index aedb7c9660c..646680fb889 100644 --- a/libglusterfs/src/dict.c +++ b/libglusterfs/src/dict.c @@ -738,7 +738,7 @@ data_unref (data_t *this) if (!this) { gf_msg_callingfn ("dict", GF_LOG_WARNING, EINVAL, - LG_MSG_INVALID_ARG, "dict is NULL"); + LG_MSG_INVALID_ARG, "data is NULL"); return; } @@ -753,7 +753,7 @@ data_ref (data_t *this) { if (!this) { gf_msg_callingfn ("dict", GF_LOG_WARNING, EINVAL, - LG_MSG_INVALID_ARG, "dict is NULL"); + LG_MSG_INVALID_ARG, "data is NULL"); return NULL; } |