]> git.proxmox.com Git - qemu.git/commitdiff
QDict: Rename 'err_value'
authorLuiz Capitulino <lcapitulino@redhat.com>
Fri, 4 Jun 2010 22:20:54 +0000 (19:20 -0300)
committerLuiz Capitulino <lcapitulino@redhat.com>
Thu, 1 Jul 2010 17:27:13 +0000 (14:27 -0300)
A missing key is not an error.

Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
qdict.c
qdict.h

diff --git a/qdict.c b/qdict.c
index 175bc178f041cfaad8078b2e920c08accb32dae9..c974d6f37ee2582d1ef0ced362d7787a94666e7c 100644 (file)
--- 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));
 }
diff --git a/qdict.h b/qdict.h
index 5e5902caea929d2483ec8b2f1066fd0d5e2648ed..72ea563d19a73c4d4b41d3f0c01c7734b94655f3 100644 (file)
--- a/qdict.h
+++ b/qdict.h
@@ -56,7 +56,7 @@ QList *qdict_get_qlist(const QDict *qdict, const char *key);
 QDict *qdict_get_qdict(const QDict *qdict, const char *key);
 const char *qdict_get_str(const QDict *qdict, const char *key);
 int64_t qdict_get_try_int(const QDict *qdict, const char *key,
-                          int64_t err_value);
+                          int64_t def_value);
 const char *qdict_get_try_str(const QDict *qdict, const char *key);
 
 #endif /* QDICT_H */