address compiler warnings
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10080 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
7c069d221a
commit
613b4e1131
@ -64,7 +64,7 @@ MultiAudioAddOn::~MultiAudioAddOn()
|
||||
|
||||
void *device = NULL;
|
||||
for ( int32 i = 0; (device = fDevices.ItemAt(i)); i++ )
|
||||
delete device;
|
||||
delete (MultiAudioDevice *)device;
|
||||
|
||||
SaveSettings();
|
||||
}
|
||||
|
@ -46,6 +46,9 @@
|
||||
|
||||
#include "MultiAudioNode.h"
|
||||
#include "driver_io.h"
|
||||
#ifdef DEBUG
|
||||
#define PRINTING
|
||||
#endif
|
||||
#include "debug.h"
|
||||
|
||||
#include <stdio.h>
|
||||
@ -299,7 +302,9 @@ void MultiAudioNode::NodeRegistered(void)
|
||||
SetParameterWeb(fWeb);
|
||||
|
||||
/* apply configuration */
|
||||
#ifdef PRINTING
|
||||
bigtime_t start = system_time();
|
||||
#endif
|
||||
|
||||
int32 index = 0;
|
||||
int32 parameterID = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user