aboutsummaryrefslogtreecommitdiffstats
path: root/qdict.c
diff options
context:
space:
mode:
authorLuiz Capitulino <lcapitulino@redhat.com>2010-06-04 19:20:54 -0300
committerLuiz Capitulino <lcapitulino@redhat.com>2010-07-01 14:27:13 -0300
commit83aba69ec05e17ff34708a5b7a3b719dac5c8fc0 (patch)
treeac00855b823c004bd0331e0941023e28654e6c4d /qdict.c
parent8754c81e11ab046c445425753f52cbb505f60a50 (diff)
QDict: Rename 'err_value'
A missing key is not an error. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qdict.c')
-rw-r--r--qdict.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/qdict.c b/qdict.c
index 175bc178f..c974d6f37 100644
--- a/qdict.c
+++ b/qdict.c
@@ -272,16 +272,16 @@ const char *qdict_get_str(const QDict *qdict, const char *key)
*
* Return integer mapped by 'key', if it is not present in
* the dictionary or if the stored object is not of QInt type
- * 'err_value' will be returned.
+ * 'def_value' will be returned.
*/
int64_t qdict_get_try_int(const QDict *qdict, const char *key,
- int64_t err_value)
+ int64_t def_value)
{
QObject *obj;
obj = qdict_get(qdict, key);
if (!obj || qobject_type(obj) != QTYPE_QINT)
- return err_value;
+ return def_value;
return qint_get_int(qobject_to_qint(obj));
}