Fixed warnings of the geekgadgets compiler.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7569 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -248,7 +248,7 @@ void MidiServerApp::OnChangeEndpoint(BMessage* msg)
|
|||||||
{
|
{
|
||||||
TRACE(("MidiServerApp::OnChangeEndpoint"))
|
TRACE(("MidiServerApp::OnChangeEndpoint"))
|
||||||
|
|
||||||
endpoint_t* endp;
|
endpoint_t* endp = NULL;
|
||||||
status_t err;
|
status_t err;
|
||||||
|
|
||||||
app_t* app = WhichApp(msg);
|
app_t* app = WhichApp(msg);
|
||||||
@@ -325,8 +325,8 @@ void MidiServerApp::OnConnectDisconnect(BMessage* msg)
|
|||||||
bool mustConnect = (msg->what == MSG_CONNECT_ENDPOINTS);
|
bool mustConnect = (msg->what == MSG_CONNECT_ENDPOINTS);
|
||||||
|
|
||||||
status_t err;
|
status_t err;
|
||||||
endpoint_t* prod;
|
endpoint_t* prod = NULL;
|
||||||
endpoint_t* cons;
|
endpoint_t* cons = NULL;
|
||||||
|
|
||||||
app_t* app = WhichApp(msg);
|
app_t* app = WhichApp(msg);
|
||||||
if (app == NULL)
|
if (app == NULL)
|
||||||
|
|||||||
Reference in New Issue
Block a user