X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf%2Ftypes%2Finteger.c;h=e0de8052940349dbd5d1ff565b8badee08890b1b;hp=003584f1a78fe54492cc34c08fc306fe548e8c38;hb=4c8bfb7e0a9cef6e74cefa38ed54bf8cbd424183;hpb=ccd7e1c86f36342b0b06651cc52df86bb663c271 diff --git a/formats/ctf/types/integer.c b/formats/ctf/types/integer.c index 003584f1..e0de8052 100644 --- a/formats/ctf/types/integer.c +++ b/formats/ctf/types/integer.c @@ -16,8 +16,8 @@ * all copies or substantial portions of the Software. */ -#include -#include +#include +#include #include #include #include @@ -188,7 +188,7 @@ end: } uint64_t ctf_uint_read(struct stream_pos *pos, - const struct type_class_bitfield *int_class) + const struct type_class_integer *int_class) { uint64_t v; @@ -204,7 +204,7 @@ uint64_t ctf_uint_read(struct stream_pos *pos, } int64_t ctf_int_read(struct stream_pos *pos, - const struct type_class_bitfield *int_class) + const struct type_class_integer *int_class) { int64_t v; @@ -220,7 +220,7 @@ int64_t ctf_int_read(struct stream_pos *pos, } void ctf_uint_write(struct stream_pos *pos, - const struct type_class_bitfield *int_class, + const struct type_class_integer *int_class, uint64_t v) { align_pos(pos, int_class->p.alignment); @@ -231,13 +231,13 @@ void ctf_uint_write(struct stream_pos *pos, int_class->len, v); else ctf_bitfield_write_be(pos->base, pos->offset, - int_class->len,, v); + int_class->len, v); end: move_pos(pos, int_class->len); } void ctf_int_write(struct stream_pos *pos, - const struct type_class_bitfield *int_class, + const struct type_class_integer *int_class, int64_t v) { align_pos(pos, int_class->p.alignment);