]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/flite/flite-1.2/fix-read-only-assignments.patch
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / flite / flite-1.2 / fix-read-only-assignments.patch
1 diff -urN flite-1.2-release.orig/include/cst_sts.h flite-1.2-release/include/cst_sts.h
2 --- flite-1.2-release.orig/include/cst_sts.h    2002-12-23 16:55:05.000000000 +0100
3 +++ flite-1.2-release/include/cst_sts.h 2004-10-04 21:10:22.000000000 +0200
4 @@ -47,9 +47,9 @@
5  /* else where, this information plus the indexes in the Unit relation */
6  /* allow reconstruction of the signal itself                          */
7  struct cst_sts_struct {
8 -    const unsigned short *frame;  
9 -    const int size;      /* in samples */
10 -    const unsigned char *residual;
11 +    unsigned short *frame;  
12 +    int size;      /* in samples */
13 +    unsigned char *residual;
14  };
15  typedef struct cst_sts_struct cst_sts;
16