diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
commit | f96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch) | |
tree | edb17ec2c4ea13c5acb1c7350957a249a820e28d /flite | |
parent | b6588aa6851fb220cedc387d21c51513ef8d67f4 (diff) |
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'flite')
-rw-r--r-- | flite/flite-1.2/fix-read-only-assignments.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/flite/flite-1.2/fix-read-only-assignments.patch b/flite/flite-1.2/fix-read-only-assignments.patch index e69de29bb2..ec241c51f5 100644 --- a/flite/flite-1.2/fix-read-only-assignments.patch +++ b/flite/flite-1.2/fix-read-only-assignments.patch @@ -0,0 +1,16 @@ +diff -urN flite-1.2-release.orig/include/cst_sts.h flite-1.2-release/include/cst_sts.h +--- flite-1.2-release.orig/include/cst_sts.h 2002-12-23 16:55:05.000000000 +0100 ++++ flite-1.2-release/include/cst_sts.h 2004-10-04 21:10:22.000000000 +0200 +@@ -47,9 +47,9 @@ + /* else where, this information plus the indexes in the Unit relation */ + /* allow reconstruction of the signal itself */ + struct cst_sts_struct { +- const unsigned short *frame; +- const int size; /* in samples */ +- const unsigned char *residual; ++ unsigned short *frame; ++ int size; /* in samples */ ++ unsigned char *residual; + }; + typedef struct cst_sts_struct cst_sts; + |