diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2010-03-13 14:18:50 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-03-13 14:18:50 +0000 |
commit | a6c6f76ceb95a0986fd1a36cc30f8241734d20c3 (patch) | |
tree | 23676aa080805386a5011b555713ee774e20f889 /qdict.c | |
parent | 090414a30c6c1d276eca48e76945f2cfcf0cccf9 (diff) |
Fix build with -DNDEBUG in CFLAGS
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'qdict.c')
-rw-r--r-- | qdict.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -195,6 +195,7 @@ double qdict_get_double(const QDict *qdict, const char *key) return qint_get_int(qobject_to_qint(obj)); default: assert(0); + return 0.0; } } |