blob: e7ff46ab404afb1f0126e9aa43a0f7074caeacea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-af,v 1.3 2004/11/19 12:15:14 adam Exp $
--- src/ms_adpcm.c.orig 2004-10-17 00:46:34.000000000 +0000
+++ src/ms_adpcm.c
@@ -44,7 +44,7 @@ typedef struct
short *samples ;
unsigned char *block ;
#if HAVE_FLEXIBLE_ARRAY
- unsigned short dummydata [] ; /* ISO C99 struct flexible array. */
+ unsigned short *dummydata ; /* ISO C99 struct flexible array. */
#else
unsigned short dummydata [0] ; /* This is a hack an might not work. */
#endif
|