diff options
author | default <nobody@localhost> | 2023-02-05 17:45:00 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-02-05 17:45:00 +0100 |
commit | 71a7569467a53f8533c0eb0f5c62ed94744ed996 (patch) | |
tree | 7bebbe5d9059a1e7308ff87110cba718b6fd43c5 /snac.h | |
parent | bad9f3a8c638f434bd04243791aecce950a104ba (diff) |
Deleted the type argument from object_get_my_md5() and object_get().
It was never used.
Diffstat (limited to 'snac.h')
-rw-r--r-- | snac.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -65,8 +65,8 @@ int object_add(const char *id, d_char *obj); int object_add_ow(const char *id, d_char *obj); int object_here_by_md5(char *id); int object_here(char *id); -int object_get_by_md5(const char *md5, d_char **obj, const char *type); -int object_get(const char *id, d_char **obj, const char *type); +int object_get_by_md5(const char *md5, xs_dict **obj); +int object_get(const char *id, xs_dict **obj); int object_del(const char *id); int object_del_if_unref(const char *id); int object_admire(const char *id, const char *actor, int like); |