X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Fltt%2Fevent.c;h=a5b046814027e30f74b3f9410518a85284cebdb0;hb=fadf7e8bf9429ba26e5e0b3203933c1a64c4a14d;hp=3f8dab9c378224c6d7328daa042f6c1f6b88d7c1;hpb=b7576a11ffb55f920d8106b6dedfd2c5d4e2a1b5;p=lttv.git diff --git a/ltt/branches/poly/ltt/event.c b/ltt/branches/poly/ltt/event.c index 3f8dab9c..a5b04681 100644 --- a/ltt/branches/poly/ltt/event.c +++ b/ltt/branches/poly/ltt/event.c @@ -622,7 +622,8 @@ float ltt_event_get_float(LttEvent *e, LttField *f) if(reverse_byte_order == 0) return *(float *)(e->data + f->offset_root); else{ void *ptr = e->data + f->offset_root; - return *(float*)bswap_32(*(guint32*)ptr); + guint32 value = bswap_32(*(guint32*)ptr); + return *(float*)&value; } } @@ -636,7 +637,8 @@ double ltt_event_get_double(LttEvent *e, LttField *f) if(reverse_byte_order == 0) return *(double *)(e->data + f->offset_root); else { void *ptr = e->data + f->offset_root; - return *(double*)bswap_64(*(guint64*)ptr); + guint64 value = bswap_64(*(guint64*)ptr); + return *(double*)&value; } }