X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=liblttng-ust-comm%2Flttng-ust-comm.c;h=ecc23821fb6fa29624dcbc25564c5011eed4aafb;hb=e1f0c5692aa0f75c547e28efd734cc911503c4f3;hp=2c54a443566a7fca4bc7e919d5bec6608f1fd176;hpb=53569322d40ed45abe0368ddb08eb4a2738afc37;p=deliverable%2Flttng-ust.git diff --git a/liblttng-ust-comm/lttng-ust-comm.c b/liblttng-ust-comm/lttng-ust-comm.c index 2c54a443..ecc23821 100644 --- a/liblttng-ust-comm/lttng-ust-comm.c +++ b/liblttng-ust-comm/lttng-ust-comm.c @@ -1088,8 +1088,10 @@ int serialize_entries(struct ustctl_enum_entry **_entries, uentry = &entries[i]; lentry = <tng_entries[i]; - uentry->start = lentry->start; - uentry->end = lentry->end; + uentry->start.value = lentry->start.value; + uentry->start.signedness = lentry->start.signedness; + uentry->end.value = lentry->end.value; + uentry->end.signedness = lentry->end.signedness; strncpy(uentry->string, lentry->string, LTTNG_UST_SYM_NAME_LEN); uentry->string[LTTNG_UST_SYM_NAME_LEN - 1] = '\0'; }