Build fix
[babeltrace.git] / types / integer.c
index 41a3116120984f32fe74011476b11c00924aa85d..bbbf4b3e0145da9e8c80d84b6e54db900de4cbfc 100644 (file)
 
 #include <babeltrace/compiler.h>
 #include <babeltrace/align.h>
 
 #include <babeltrace/compiler.h>
 #include <babeltrace/align.h>
-#include <babeltrace/types.h>
+#include <babeltrace/format.h>
 #include <stdint.h>
 
 #include <stdint.h>
 
-size_t integer_copy(unsigned char *dest, const struct format *fdest, 
-                   const unsigned char *src, const struct format *fsrc,
-                   const struct type_class *type_class)
+void integer_copy(struct stream_pos *dest, const struct format *fdest, 
+                 struct stream_pos *src, const struct format *fsrc,
+                 const struct type_class *type_class)
 {
        struct type_class_integer *int_class =
                container_of(type_class, struct type_class_integer, p);
 {
        struct type_class_integer *int_class =
                container_of(type_class, struct type_class_integer, p);
@@ -32,12 +32,12 @@ size_t integer_copy(unsigned char *dest, const struct format *fdest,
                uint64_t v;
 
                v = fsrc->uint_read(src, int_class);
                uint64_t v;
 
                v = fsrc->uint_read(src, int_class);
-               return fdest->uint_write(dest, int_class, v);
+               fdest->uint_write(dest, int_class, v);
        } else {
                int64_t v;
 
                v = fsrc->int_read(src, int_class);
        } else {
                int64_t v;
 
                v = fsrc->int_read(src, int_class);
-               return fdest->int_write(dest, int_class, v);
+               fdest->int_write(dest, int_class, v);
        }
 }
 
        }
 }
 
@@ -66,6 +66,7 @@ struct type_class_integer *integer_type_new(const char *name,
        int_class->p.alignment = alignment;
        int_class->p.copy = integer_copy;
        int_class->p.free = _integer_type_free;
        int_class->p.alignment = alignment;
        int_class->p.copy = integer_copy;
        int_class->p.free = _integer_type_free;
+       int_class->p.ref = 1;
        int_class->len = len;
        int_class->byte_order = byte_order;
        int_class->signedness = signedness;
        int_class->len = len;
        int_class->byte_order = byte_order;
        int_class->signedness = signedness;
This page took 0.023147 seconds and 4 git commands to generate.