From db2356f5861d4a81d67c00843a15f5624cd21fb5 Mon Sep 17 00:00:00 2001 From: Alexei Podtelezhnikov Date: Wed, 15 Apr 2020 23:56:11 -0400 Subject: [PATCH] sna: fix typo for --enable-debug=full A typo in tightly_packed define for builds with optimisation disabled left us creating many packed objects. When compiled with -fno-common the compiler rightfully complains about the duplication. Signed-off-by: Alexei Podtelezhnikov Signed-off-by: Chris Wilson --- src/sna/compiler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sna/compiler.h b/src/sna/compiler.h index 2e579b15..c3d98797 100644 --- a/src/sna/compiler.h +++ b/src/sna/compiler.h @@ -50,7 +50,7 @@ #define must_check #define constant #define pure -#define tighly_packed +#define tightly_packed #define flatten #define nonnull #define page_aligned