X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=images%2Fimage-tool.c;h=3f24d0294ddfff4a3121ee03f3fe6b64c7e40894;hb=eec6d2c37cbcbf9c350aa4ca80e5a316e5144087;hp=e1717569f86ef165331c2856442fc452ac07be13;hpb=bf5edbdd5b56a0d2e239e96dd476c7a9a562506a;p=libucw.git diff --git a/images/image-tool.c b/images/image-tool.c index e1717569..3f24d029 100644 --- a/images/image-tool.c +++ b/images/image-tool.c @@ -7,10 +7,10 @@ * of the GNU General Public License. */ -#include "lib/lib.h" -#include "lib/fastbuf.h" -#include "images/images.h" -#include "images/color.h" +#include +#include +#include +#include #include #include @@ -84,7 +84,7 @@ parse_color(struct color *color, byte *s) color_make_rgb(color, (v >> 16) & 255, (v >> 8) & 255, v & 255); } -#define MSG(x...) do{ if (verbose) log(L_INFO, ##x); }while(0) +#define MSG(x...) do{ if (verbose) msg(L_INFO, ##x); }while(0) int main(int argc, char **argv)