924c483f27
patch-clients_audio_audemo_audemo.c patch-clients_audio_auedit_Graph.c patch-clients_audio_auedit_auedit.c patch-clients_audio_aupanel_aupanel.c patch-clients_audio_auphone_auphone.c patch-clients_audio_autool_audiotool.c patch-clients_audio_auwave_auwave.c patch-server_dda_voxware_config.c patch-server_dia_gram.y patch-server_dia_lex.l to ease with maintaining.
22 lines
539 B
C
22 lines
539 B
C
--- clients/audio/autool/audiotool.c Sun Jun 20 19:27:08 2004
|
|
+++ clients/audio/autool/audiotool.c Mon Oct 10 11:24:41 2005
|
|
@@ -30,4 +30,5 @@
|
|
#include "config.h"
|
|
|
|
+#include <inttypes.h>
|
|
#include <stdio.h>
|
|
|
|
@@ -37,5 +38,5 @@
|
|
|
|
#if defined(HAVE_MALLOC_H)
|
|
-# include <malloc.h>
|
|
+# include <stdlib.h>
|
|
#endif
|
|
|
|
@@ -387,5 +388,5 @@
|
|
{
|
|
GlobalDataPtr globals = (GlobalDataPtr) data;
|
|
- int position = (int) cd;
|
|
+ intptr_t position = (intptr_t) cd;
|
|
int newVolume;
|
|
char buf[50];
|