X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fsyntax-gen.c;h=27e61e4253b476607f37ef4f3ddecfb005db9e19;hb=a59c29f5971e31a61974ea457ff23a97f603ee34;hp=f14a87a91f04059021dc1dfe9d3c113679a2c119;hpb=ef1c6e31701304b64c492216bbdff99ec989ab7d;p=pspp diff --git a/src/ui/syntax-gen.c b/src/ui/syntax-gen.c index f14a87a91f..27e61e4253 100644 --- a/src/ui/syntax-gen.c +++ b/src/ui/syntax-gen.c @@ -196,10 +196,8 @@ syntax_gen_value (struct string *output, const union value *value, int width, if (width == 0) syntax_gen_number (output, value->f, format); else - { - char *s = CHAR_CAST_BUG (char *, value_str (value, width)); - syntax_gen_string (output, ss_buffer (s, width)); - } + syntax_gen_string (output, + ss_buffer (CHAR_CAST (const char *, value->s), width)); } /* Appends THRU to OUTPUT. If LOW is LOWEST, then @@ -298,7 +296,7 @@ syntax_gen_pspp_valist (struct string *output, const char *format, } conv[x++] = directive; conv[x++] = '\0'; - + ds_put_c_format (output, conv, d); break; }