mirror of
https://git.freebsd.org/ports.git
synced 2025-07-16 00:39:15 -04:00
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.
36 lines
943 B
C
36 lines
943 B
C
--- clients/audio/auedit/auedit.c Sun Jun 20 15:06:50 2004
|
|
+++ clients/audio/auedit/auedit.c Mon Oct 10 11:16:16 2005
|
|
@@ -28,4 +28,5 @@
|
|
*/
|
|
|
|
+#include <inttypes.h>
|
|
#include <stdio.h>
|
|
|
|
@@ -390,5 +390,5 @@
|
|
{
|
|
GlobalDataPtr g = (GlobalDataPtr) gp;
|
|
- int p = (int) pp;
|
|
+ intptr_t p = (intptr_t) pp;
|
|
int n;
|
|
|
|
@@ -406,5 +406,5 @@
|
|
{
|
|
GlobalDataPtr g = (GlobalDataPtr) gp;
|
|
- int p = (int) pp;
|
|
+ intptr_t p = (intptr_t) pp;
|
|
int n;
|
|
|
|
@@ -457,5 +457,5 @@
|
|
{
|
|
GlobalDataPtr g = (GlobalDataPtr) gp;
|
|
- int gain = (int) gainp;
|
|
+ intptr_t gain = (intptr_t) gainp;
|
|
AuDeviceAttributes da;
|
|
|
|
@@ -1844,5 +1844,5 @@
|
|
{
|
|
GlobalDataPtr g = (GlobalDataPtr) gp;
|
|
- int value = (int) valuep;
|
|
+ intptr_t value = (intptr_t) valuep;
|
|
AuElementParameters *parms;
|
|
ElementListPtr p = ElementList;
|