diff options
Diffstat (limited to 'dev-db/sqlite/files/sqlite-2.8.15-alignement-fix.patch')
-rw-r--r-- | dev-db/sqlite/files/sqlite-2.8.15-alignement-fix.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-db/sqlite/files/sqlite-2.8.15-alignement-fix.patch b/dev-db/sqlite/files/sqlite-2.8.15-alignement-fix.patch index 9420d1d277d1..7081ffd00323 100644 --- a/dev-db/sqlite/files/sqlite-2.8.15-alignement-fix.patch +++ b/dev-db/sqlite/files/sqlite-2.8.15-alignement-fix.patch @@ -6,7 +6,7 @@ diff -uNr sqlite.orig/src/vdbeInt.h sqlite/src/vdbeInt.h double r; /* Real value */ char *z; /* String value */ - char zShort[NBFS]; /* Space for short strings */ -+ char zShort[NBFS]; __attribute__ ((__aligned__(16))); /* Space for short strings */ ++ char zShort[NBFS] __attribute__ ((__aligned__(16))); /* Space for short strings */ }; typedef struct Mem Mem; |