]> git.pld-linux.org Git - packages/flite.git/blob - flite-fix-readonly-assignments.patch
- updated to 2.2
[packages/flite.git] / flite-fix-readonly-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  
This page took 0.084854 seconds and 3 git commands to generate.