]> mj.ucw.cz Git - libucw.git/blobdiff - images/context.c
Merge with git+ssh://git.ucw.cz/projects/sherlock/GIT/sherlock.git#dev-threads
[libucw.git] / images / context.c
index bcabc520d656158abf7f37858b38fc4ac28c7334..6281ba3cb0974874b0974383b45de2a2b1972820 100644 (file)
@@ -46,12 +46,10 @@ image_context_msg_silent(struct image_context *ctx UNUSED)
 void
 image_context_msg(struct image_context *ctx, uns code, char *msg, ...)
 {
-  ctx->msg_code = code;
   va_list args;
   va_start(args, msg);
-  ctx->msg = bb_vprintf(&ctx->msg_buf, msg, args);
+  image_context_vmsg(ctx, code, msg, args);
   va_end(args);
-  ctx->msg_callback(ctx);
 }
 
 void