X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf%2Ftypes%2Fstruct.c;h=adce6cbabb32211cddf296d6ab4dd36bdf1fd451;hp=7c0a249bf03812e1730370e4f30920df2f9285e8;hb=64fa3fec6c28f1d077812b4bfa06ae73b0f5999d;hpb=d11e9c4975d88591e2324b6b11f426a22995833f diff --git a/formats/ctf/types/struct.c b/formats/ctf/types/struct.c index 7c0a249b..adce6cba 100644 --- a/formats/ctf/types/struct.c +++ b/formats/ctf/types/struct.c @@ -3,7 +3,9 @@ * * Structure format access functions. * - * Copyright 2010 - Mathieu Desnoyers + * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation + * + * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -18,11 +20,11 @@ #include -void ctf_struct_rw(struct stream_pos *ppos, struct definition *definition) +int ctf_struct_rw(struct stream_pos *ppos, struct definition *definition) { struct declaration *declaration = definition->declaration; struct ctf_stream_pos *pos = ctf_pos(ppos); ctf_align_pos(pos, declaration->alignment); - struct_rw(ppos, definition); + return struct_rw(ppos, definition); }