]> git.eshelyaron.com Git - emacs.git/commitdiff
dbusbind: Fix typo in cd77eaeb
authorDaiki Ueno <ueno@gnu.org>
Wed, 2 Sep 2015 07:45:14 +0000 (16:45 +0900)
committerDaiki Ueno <ueno@gnu.org>
Wed, 2 Sep 2015 07:47:45 +0000 (16:47 +0900)
* src/dbusbind.c (xd_dbus_type_to_symbol): Return Qnil instead of
DBUS_TYPE_INVALID, if the type is unknown.

src/dbusbind.c

index f379df9e31813b1e6d56149e90ca09e195ba23f8..523a9343862427d7cf7a242c9c5b98e2baf6a1f5 100644 (file)
@@ -251,7 +251,7 @@ xd_dbus_type_to_symbol (int dtype)
       return QCdbus_type_dict_entry;
 
     default:
-      return DBUS_TYPE_INVALID;
+      return Qnil;
     }
 }