]> git.pld-linux.org Git - packages/wavplay.git/commitdiff
- this problem is everywhere
authorMariusz Mazur <mmazur@pld-linux.org>
Sun, 30 Jun 2002 22:23:17 +0000 (22:23 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    wavplay-va_arg_fix.patch -> 1.1

wavplay-va_arg_fix.patch [new file with mode: 0644]

diff --git a/wavplay-va_arg_fix.patch b/wavplay-va_arg_fix.patch
new file mode 100644 (file)
index 0000000..cbfd324
--- /dev/null
@@ -0,0 +1,11 @@
+--- menu.c~    Sat Dec  4 01:06:42 1999
++++ menu.c     Mon Jul  1 00:20:38 2002
+@@ -78,7 +78,7 @@
+       nameChoice = va_arg(ap,char *);
+       while ( nameChoice != NULL ) {
+-              menu_type = va_arg(ap,char);            /* Get 'M' or 'T' */
++              menu_type = (char)va_arg(ap,int);               /* Get 'M' or 'T' */
+               callback = va_arg(ap,XtCallbackProc);   /* Get callback address or NULL ptr */
+               wPointer = va_arg(ap,Widget *);         /* Get address so we can return widget */
This page took 0.094207 seconds and 4 git commands to generate.