Use 64-bit type for packet and content size
[babeltrace.git] / include / babeltrace / ctf / types.h
index 12cca6e12539ddc0880b5e55677f476800882c2e..9cbb3387cabdea53042130f1101e79516bd97f26 100644 (file)
@@ -36,8 +36,8 @@ struct bt_stream_callbacks;
 struct packet_index {
        off_t offset;           /* offset of the packet in the file, in bytes */
        off_t data_offset;      /* offset of data within the packet, in bits */
-       size_t packet_size;     /* packet size, in bits */
-       size_t content_size;    /* content size, in bits */
+       uint64_t packet_size;   /* packet size, in bits */
+       uint64_t content_size;  /* content size, in bits */
        uint64_t timestamp_begin;
        uint64_t timestamp_end;
        uint32_t events_discarded;
This page took 0.023114 seconds and 4 git commands to generate.