summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/pthread.c8
-rw-r--r--test/tuple.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/test/pthread.c b/test/pthread.c
index 0e75dc3..8c1d87f 100644
--- a/test/pthread.c
+++ b/test/pthread.c
@@ -73,14 +73,14 @@ static void recv_alpha_sb(tn_session *s, tn_tuple *tup, tn_returnpath *p, void *
tn_tuple_unref(tup);
// Reply
- tn_reply(p, tn_tuple_new("i", 1));
- tn_reply(p, tn_tuple_new("i", 2));
+ tn_reply(p, tn_tuple_new("i", (uint64_t)1));
+ tn_reply(p, tn_tuple_new("i", (uint64_t)2));
tn_reply_close(p);
// Send some more alphas
int i;
for(i=1; i<10; i++)
- tn_session_send(sa, tn_tuple_new("si", strdup("alpha"), i), NULL, NULL);
+ tn_session_send(sa, tn_tuple_new("si", strdup("alpha"), (uint64_t)i), NULL, NULL);
tn_session_close(sb);
r_alpha_sb++;
@@ -139,7 +139,7 @@ int main() {
tn_session_register(sb, tn_tuple_new("s", strdup("alpha")), 1, recv_alpha_sb, (void *)2);
// Send start message (which wants a reply)
- tn_session_send(sa, tn_tuple_new("si", strdup("alpha"), 0), recv_reply, (void *)3);
+ tn_session_send(sa, tn_tuple_new("si", strdup("alpha"), (uint64_t)0), recv_reply, (void *)3);
pthread_join(th, NULL);
pthread_join(thb, NULL);
diff --git a/test/tuple.c b/test/tuple.c
index 9df30b3..240942f 100644
--- a/test/tuple.c
+++ b/test/tuple.c
@@ -105,7 +105,7 @@ int main() {
t_assert(tn_el_num(e) == 1021.2);
tn_el_free(e);
- e = tn_map_new(0, "si", strdup("str"), strdup("strval"), strdup("int"), 42);
+ e = tn_map_new(0, "si", strdup("str"), strdup("strval"), strdup("int"), (uint64_t)42);
t_assert(e.type == TN_VT_MAP);
t_assert(e.count == 2);
v = tn_map_get(e, "str");