André, Just a note. We don't normally worry about warnings in the lib-src stuff unless we also submit the change upstream. If we do need to make changes to the lib-src stuff, we create a patch file and make a note of it in lib-src/audacity-patches.txt so that the patch can be re-applied after updating to a new upstream version.
Leland André Pinto wrote: > Update of /cvsroot/audacity/lib-src/portaudio-v19/src/os/win > In directory > 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv1207/lib-src/portaudio-v19/src/os/win > > Modified Files: > pa_win_wdmks_utils.c > Log Message: > when linking is off it's now possible to apply clear over labels without > afecting any other labels besides the ones that are being selected. > Discussion: http://tinyurl.com/nocumq > fixed some warnings. > > Index: pa_win_wdmks_utils.c > =================================================================== > RCS file: > /cvsroot/audacity/lib-src/portaudio-v19/src/os/win/pa_win_wdmks_utils.c,v > retrieving revision 1.6 > retrieving revision 1.7 > diff -u -d -r1.6 -r1.7 > --- pa_win_wdmks_utils.c 1 Jan 2009 22:31:28 -0000 1.6 > +++ pa_win_wdmks_utils.c 16 Jul 2009 21:09:58 -0000 1.7 > @@ -40,6 +40,7 @@ > #include <ks.h> > #include <ksmedia.h> > #include <stdio.h> // just for some development printfs > +#include <stddef.h> > > #include "portaudio.h" > #include "pa_util.h" > @@ -155,7 +156,7 @@ > { > KSMULTIPLE_ITEM* item = NULL; > KSIDENTIFIER* identifier; > - int i; > + size_t i; > int result = 0; > > if( WdmGetPinPropertyMulti( deviceHandle, pinId, property, &item) != > paNoError ) > @@ -163,7 +164,7 @@ > > identifier = (KSIDENTIFIER*)(item+1); > > - for( i = 0; i < (int)item->Count; i++ ) > + for( i = 0; i < item->Count; i++ ) > { > if( !memcmp( (void*)&identifier[i].Set, (void*)identifierSet, > sizeof( GUID ) ) && > ( identifier[i].Id == identifierId ) ) > @@ -185,8 +186,9 @@ > int PaWin_WDMKS_QueryFilterMaximumChannelCount( void *wcharDevicePath, int > isInput ) > { > HANDLE deviceHandle; > - int pinCount, pinId, i; > + int pinCount, pinId; > int result = 0; > + size_t i; > KSPIN_DATAFLOW requiredDataflowDirection = (isInput ? KSPIN_DATAFLOW_OUT > : KSPIN_DATAFLOW_IN ); > > if( !wcharDevicePath ) > > > ------------------------------------------------------------------------------ > Enter the BlackBerry Developer Challenge > This is your chance to win up to $100,000 in prizes! For a limited time, > vendors submitting new applications to BlackBerry App World(TM) will have > the opportunity to enter the BlackBerry Developer Challenge. See full prize > details at: http://p.sf.net/sfu/Challenge > _______________________________________________ > Audacity-cvs mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/audacity-cvs > ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Audacity-cvs mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/audacity-cvs
