From 88ef2317725a4597a37f9f1094feecbb3cf33971 Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Wed, 2 Sep 2015 16:45:14 +0900 Subject: [PATCH] dbusbind: Fix typo in cd77eaeb * src/dbusbind.c (xd_dbus_type_to_symbol): Return Qnil instead of DBUS_TYPE_INVALID, if the type is unknown. --- src/dbusbind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dbusbind.c b/src/dbusbind.c index f379df9e318..523a9343862 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c @@ -251,7 +251,7 @@ xd_dbus_type_to_symbol (int dtype) return QCdbus_type_dict_entry; default: - return DBUS_TYPE_INVALID; + return Qnil; } } -- 2.39.5