X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf-text%2Ftypes%2Fenum.c;h=33009da788a5a4dd6577649c40024e5126d14047;hp=198f7829e7db948890311ebda15c75a0a5054445;hb=c5e74408f9786219f6b44400dcf2098ab9cc78fb;hpb=2e8b37d41284e54bdb5af4bf5b51c5a616f69597 diff --git a/formats/ctf-text/types/enum.c b/formats/ctf-text/types/enum.c index 198f7829..33009da7 100644 --- a/formats/ctf-text/types/enum.c +++ b/formats/ctf-text/types/enum.c @@ -20,7 +20,7 @@ #include #include -void ctf_text_enum_write(struct stream_pos *ppos, struct definition *definition) +int ctf_text_enum_write(struct stream_pos *ppos, struct definition *definition) { struct definition_enum *enum_definition = container_of(definition, struct definition_enum, p); @@ -28,14 +28,14 @@ void ctf_text_enum_write(struct stream_pos *ppos, struct definition *definition) enum_definition->integer; struct ctf_text_stream_pos *pos = ctf_text_pos(ppos); GArray *qs; - int i; + int i, ret; if (pos->dummy) - return; + return 0; print_pos_tabs(pos); fprintf(pos->fp, "("); pos->depth++; - generic_rw(ppos, &integer_definition->p); + ret = generic_rw(ppos, &integer_definition->p); print_pos_tabs(pos); qs = enum_definition->value; @@ -49,4 +49,5 @@ void ctf_text_enum_write(struct stream_pos *ppos, struct definition *definition) pos->depth--; print_pos_tabs(pos); fprintf(pos->fp, ")"); + return ret; }