diff options
Diffstat (limited to 'dbus/dbus-spawn.c')
| -rw-r--r-- | dbus/dbus-spawn.c | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/dbus/dbus-spawn.c b/dbus/dbus-spawn.c index 604b9e7c..0e62f951 100644 --- a/dbus/dbus-spawn.c +++ b/dbus/dbus-spawn.c @@ -235,14 +235,17 @@ _dbus_babysitter_new (void)   * Increment the reference count on the babysitter object.   *   * @param sitter the babysitter + * @returns the babysitter   */ -void +DBusBabysitter *  _dbus_babysitter_ref (DBusBabysitter *sitter)  {    _dbus_assert (sitter != NULL);    _dbus_assert (sitter->refcount > 0);    sitter->refcount += 1; + +  return sitter;  }  /**  | 
