commit fc5b34e70593f1c6de37f948dfe052be2e45cd12
parent 9927e89ba924da23de838b0a207192341ebe0855
Author: Florian Dold <florian@dold.me>
Date: Fri, 6 Jan 2023 17:03:48 +0100
missing return
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/taler_wallet_core_lib.c b/taler_wallet_core_lib.c
@@ -96,6 +96,7 @@ TALER_WALLET_send_request (struct TALER_WALLET_Instance *h,
pthread_mutex_lock(&h->handle_mutex);
pthread_mutex_unlock(&h->handle_mutex);
ret = js_os_post_message_from_host(h->ctx, msg);
+ return 0;
}
static void
@@ -159,6 +160,7 @@ run(void *cls)
js_std_loop(wh->ctx);
printf("done with main loop\n");
+ return NULL;
}
void