diff options
Diffstat (limited to 'dbus/dbus-auth.c')
| -rw-r--r-- | dbus/dbus-auth.c | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/dbus/dbus-auth.c b/dbus/dbus-auth.c index cdfd3bb2..7c7befb1 100644 --- a/dbus/dbus-auth.c +++ b/dbus/dbus-auth.c @@ -1894,13 +1894,16 @@ _dbus_auth_client_new (void)   * Increments the refcount of an auth object.   *   * @param auth the auth conversation + * @returns the auth conversation   */ -void +DBusAuth *  _dbus_auth_ref (DBusAuth *auth)  {    _dbus_assert (auth != NULL);    auth->refcount += 1; +   +  return auth;  }  /** | 
