Tag a few missed printf-like functions and fix a missing "%s".

This commit is contained in:
Nicholas Marriott
2009-08-18 14:48:42 +00:00
parent 003a2e6479
commit dc6271cd79
3 changed files with 10 additions and 10 deletions

View File

@ -94,7 +94,7 @@ cmd_show_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
if (len != 0) {
buf[len] = '\0';
ctx->print(ctx, buf);
ctx->print(ctx, "%s", buf);
}
xfree(buf);