X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf-text%2Ftypes%2Fstring.c;h=d07501e5c2b510bee955ab8aa215a1636116aff7;hp=22103ce80b742522bc779582542a0cd0dc0e0e77;hb=c5e74408f9786219f6b44400dcf2098ab9cc78fb;hpb=2e8b37d41284e54bdb5af4bf5b51c5a616f69597 diff --git a/formats/ctf-text/types/string.c b/formats/ctf-text/types/string.c index 22103ce8..d07501e5 100644 --- a/formats/ctf-text/types/string.c +++ b/formats/ctf-text/types/string.c @@ -21,8 +21,8 @@ #include /* C99 limits */ #include -void ctf_text_string_write(struct stream_pos *ppos, - struct definition *definition) +int ctf_text_string_write(struct stream_pos *ppos, + struct definition *definition) { struct definition_string *string_definition = container_of(definition, struct definition_string, p); @@ -30,7 +30,8 @@ void ctf_text_string_write(struct stream_pos *ppos, assert(string_definition->value != NULL); if (pos->dummy) - return; + return 0; print_pos_tabs(pos); fprintf(pos->fp, "%s\n", string_definition->value); + return 0; }