X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Falign.h;h=d5197cb42f5e6bb6b7d0ce991bb7088eff65749b;hb=90bf3cefc3f8799b3a822bf9123f21e81220574e;hp=00bd4cb3b6d84dca0ec61666d4834756bcf43301;hpb=ccd7e1c86f36342b0b06651cc52df86bb663c271;p=babeltrace.git diff --git a/include/babeltrace/align.h b/include/babeltrace/align.h index 00bd4cb3..d5197cb4 100644 --- a/include/babeltrace/align.h +++ b/include/babeltrace/align.h @@ -17,7 +17,7 @@ * all copies or substantial portions of the Software. */ -#include +#include #define ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a) - 1) #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask))