| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/audio/nas/files/ |
Upload File : |
--- clients/audio/auedit/auedit.c.orig 2013-10-07 17:05:48 UTC
+++ clients/audio/auedit/auedit.c
@@ -27,6 +27,7 @@
* $NCDId: @(#)auedit.c,v 1.35 1995/12/06 01:10:29 greg Exp $
*/
+#include <inttypes.h>
#include <stdio.h>
#include "config.h"
@@ -389,7 +390,7 @@ XtPointer gp;
XtPointer pp;
{
GlobalDataPtr g = (GlobalDataPtr) gp;
- int p = (int) pp;
+ intptr_t p = (intptr_t) pp;
int n;
XtVaGetValues(g->graph, XtNrightMarker, &n, NULL);
@@ -405,7 +406,7 @@ XtPointer gp;
XtPointer pp;
{
GlobalDataPtr g = (GlobalDataPtr) gp;
- int p = (int) pp;
+ intptr_t p = (intptr_t) pp;
int n;
XtVaGetValues(g->graph, XtNleftMarker, &n, NULL);
@@ -456,7 +457,7 @@ XtPointer gp;
XtPointer gainp;
{
GlobalDataPtr g = (GlobalDataPtr) gp;
- int gain = (int) gainp;
+ intptr_t gain = (intptr_t) gainp;
AuDeviceAttributes da;
if (!AuDeviceChangableMask(AuServerDevice(g->aud,
@@ -1843,7 +1844,7 @@ XtPointer gp;
XtPointer valuep;
{
GlobalDataPtr g = (GlobalDataPtr) gp;
- int value = (int) valuep;
+ intptr_t value = (intptr_t) valuep;
AuElementParameters *parms;
ElementListPtr p = ElementList;
int i = 0;