summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/pdbox/PDa/src/d_soundfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/pdbox/PDa/src/d_soundfile.c b/apps/plugins/pdbox/PDa/src/d_soundfile.c
index 81e2d4008e..3824cd5c37 100644
--- a/apps/plugins/pdbox/PDa/src/d_soundfile.c
+++ b/apps/plugins/pdbox/PDa/src/d_soundfile.c
@@ -683,7 +683,7 @@ static int create_soundfile(t_canvas *canvas, const char *filename,
683 { 683 {
684 long datasize = nframes * nchannels * bytespersamp; 684 long datasize = nframes * nchannels * bytespersamp;
685 long longtmp; 685 long longtmp;
686 t_datachunk *aiffdc = (t_datachunk *)headerbuf + sizeof(t_aiff); 686 t_datachunk *aiffdc = (t_datachunk *)(headerbuf + sizeof(t_aiff));
687 static unsigned char AIFF_splrate[] = {0x40, 0x0e, 0xac, 0x44, 0, 0, 0, 0, 0, 0}; 687 static unsigned char AIFF_splrate[] = {0x40, 0x0e, 0xac, 0x44, 0, 0, 0, 0, 0, 0};
688 static unsigned char datachunk_ID[] = {'S', 'S', 'N', 'D'}; 688 static unsigned char datachunk_ID[] = {'S', 'S', 'N', 'D'};
689 if (strcmp(filenamebuf + strlen(filenamebuf)-4, ".aif") && 689 if (strcmp(filenamebuf + strlen(filenamebuf)-4, ".aif") &&