]> mj.ucw.cz Git - libucw.git/blobdiff - images/image-tool.c
ABI: Tables used by ucw/chartype.h are prefixed
[libucw.git] / images / image-tool.c
index e1717569f86ef165331c2856442fc452ac07be13..3f24d0294ddfff4a3121ee03f3fe6b64c7e40894 100644 (file)
@@ -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 <ucw/lib.h>
+#include <ucw/fastbuf.h>
+#include <images/images.h>
+#include <images/color.h>
 
 #include <getopt.h>
 #include <stdlib.h>
@@ -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)