From c3d35ba2e149482aed7c81e4337aa3c6ab7b7c11 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Fri, 1 May 2015 01:01:11 +0300 Subject: [PATCH] Fix building with FONT_COMPRESSION_DEBUG --- src/buffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/buffer.h b/src/buffer.h index 3595e84..588ac0d 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -48,7 +48,7 @@ namespace woff2 { #define FONT_COMPRESSION_FAILURE() false #else #define FONT_COMPRESSION_FAILURE() \ - util::compression::font::Failure(__FILE__, __LINE__, __PRETTY_FUNCTION__) + woff2::Failure(__FILE__, __LINE__, __PRETTY_FUNCTION__) inline bool Failure(const char *f, int l, const char *fn) { fprintf(stderr, "ERROR at %s:%d (%s)\n", f, l, fn); fflush(stderr);