aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-context.h
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-05-05 12:26:13 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2017-05-05 12:26:13 +0200
commit0609e7481a2c2ab475ebd3cba60ce88eb53ddd20 (patch)
treed75f6323fe7c9961b762e7666b3ebafea59a5756 /src/afb-context.h
parent58ca325302568bfd7ddbdd5d2d4a31b49d0be85a (diff)
make function afb_context_set return a status
Change-Id: I5172c58288e5974001f3478f7cee94d7a98abe7d Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-context.h')
-rw-r--r--src/afb-context.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afb-context.h b/src/afb-context.h
index 55605858..5f007f9c 100644
--- a/src/afb-context.h
+++ b/src/afb-context.h
@@ -46,7 +46,7 @@ extern const char *afb_context_sent_token(struct afb_context *context);
extern const char *afb_context_sent_uuid(struct afb_context *context);
extern void *afb_context_get(struct afb_context *context);
-extern void afb_context_set(struct afb_context *context, void *value, void (*free_value)(void*));
+extern int afb_context_set(struct afb_context *context, void *value, void (*free_value)(void*));
extern void *afb_context_data(struct afb_context *context, void *(*make_value)(void), void (*free_value)(void*));
extern void afb_context_close(struct afb_context *context);