diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2010-06-04 19:20:54 -0300 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2010-07-01 14:27:13 -0300 |
commit | 83aba69ec05e17ff34708a5b7a3b719dac5c8fc0 (patch) | |
tree | ac00855b823c004bd0331e0941023e28654e6c4d /qdict.h | |
parent | 8754c81e11ab046c445425753f52cbb505f60a50 (diff) |
QDict: Rename 'err_value'
A missing key is not an error.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qdict.h')
-rw-r--r-- | qdict.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ |