X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=inline;f=images%2Fcontext.c;h=82ff16557ca708fb8e446eafdd66d6a81124dcb8;hb=b8667492cf36a609939ee35ac42900ff0b0cc80f;hp=13ce4b8c9883bbb17e247f4959af48a3b2430d2c;hpb=a4fe009d3366b0a3e119713b0ecc7fc0070efdfa;p=libucw.git diff --git a/images/context.c b/images/context.c index 13ce4b8c..82ff1655 100644 --- a/images/context.c +++ b/images/context.c @@ -9,10 +9,10 @@ #undef LOCAL_DEBUG -#include "ucw/lib.h" -#include "ucw/bbuf.h" -#include "images/images.h" -#include "images/error.h" +#include +#include +#include +#include #include @@ -44,7 +44,7 @@ image_context_msg_silent(struct image_context *ctx UNUSED) } void -image_context_msg(struct image_context *ctx, uns code, char *msg, ...) +image_context_msg(struct image_context *ctx, uint code, char *msg, ...) { va_list args; va_start(args, msg); @@ -53,7 +53,7 @@ image_context_msg(struct image_context *ctx, uns code, char *msg, ...) } void -image_context_vmsg(struct image_context *ctx, uns code, char *msg, va_list args) +image_context_vmsg(struct image_context *ctx, uint code, char *msg, va_list args) { ctx->msg_code = code; ctx->msg = bb_vprintf(&ctx->msg_buf, msg, args);