summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libglusterfs/src/dict.c4
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;
}