From 23e2a420f90c4d39386a0c0c2a8bea0e376ab070 Mon Sep 17 00:00:00 2001 From: Yaniv Kaul Date: Mon, 30 Jul 2018 20:43:24 +0300 Subject: dict.c: copy-pasta fix (dict -> data) Change-Id: Ifda14a1cc01e0fa99ff20d710eccb43296e22955 updates: bz#1193929 Signed-off-by: Yaniv Kaul --- libglusterfs/src/dict.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libglusterfs') 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; } -- cgit