diff options
author | Havoc Pennington <hp@redhat.com> | 2003-07-17 01:10:57 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2003-07-17 01:10:57 +0000 |
commit | 8b7fe6f99dd35f32443a4e23466c8a1e4cfaa32b (patch) | |
tree | 8b256d8b7b09c0c0360ea10075ba0962a1874b51 /dbus/dbus-object.c | |
parent | f1ee877d76000920e6dbec1b59be1ffab39d2c81 (diff) |
2003-07-13 Havoc Pennington <hp@pobox.com>
* dbus/dbus-object.h (struct DBusObjectVTable): add padding
fields to DBusObjectVTable and DBusObjectInfo
Diffstat (limited to 'dbus/dbus-object.c')
-rw-r--r-- | dbus/dbus-object.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dbus/dbus-object.c b/dbus/dbus-object.c index 262f75ca..c3f1536d 100644 --- a/dbus/dbus-object.c +++ b/dbus/dbus-object.c @@ -136,7 +136,8 @@ callback_object_message (DBusObjectInfo *info, static const DBusObjectVTable callback_object_vtable = { callback_object_registered, callback_object_unregistered, - callback_object_message + callback_object_message, + NULL, NULL, NULL }; /** |