X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=lib%2Ftrace-collection.c;fp=lib%2Ftrace-collection.c;h=213ece5c07c2f85c40b36e5f7d95baa8cc5da050;hp=035d2dc2d78a77a596e1b0fce2d6e8ccc86f6c3c;hb=5b44aff250d4510f7e96447ddc77f0e3ff3f1739;hpb=b04abc0d33636acfb49feaf77284915eb500a885 diff --git a/lib/trace-collection.c b/lib/trace-collection.c index 035d2dc2..213ece5c 100644 --- a/lib/trace-collection.c +++ b/lib/trace-collection.c @@ -53,7 +53,7 @@ static void check_clock_match(gpointer key, gpointer value, gpointer user_data) * by clock name. */ clock_b = g_hash_table_lookup(match->clocks, - (gpointer) (unsigned long) clock_a->name); + GUINT_TO_POINTER(clock_a->name)); if (clock_b) { match->clock_match = clock_b; return; @@ -64,7 +64,7 @@ static void check_clock_match(gpointer key, gpointer value, gpointer user_data) * clocks. */ clock_b = g_hash_table_lookup(match->clocks, - (gpointer) (unsigned long) clock_a->uuid); + GUINT_TO_POINTER(clock_a->uuid)); if (clock_b) { match->clock_match = clock_b; return; @@ -87,7 +87,7 @@ static void clock_add(gpointer key, gpointer value, gpointer user_data) struct ctf_clock *tc_clock; tc_clock = g_hash_table_lookup(tc_clocks, - (gpointer) (unsigned long) v); + GUINT_TO_POINTER(v)); if (!tc_clock) { /* * For now we only support CTF that has one @@ -105,7 +105,7 @@ static void clock_add(gpointer key, gpointer value, gpointer user_data) clock_match->tc->offset_first; } g_hash_table_insert(tc_clocks, - (gpointer) (unsigned long) v, + GUINT_TO_POINTER(v), value); } else if (!t_clock->absolute) { int64_t diff_ns;