Changeset 1901:66b9ba51e1c2 in roaraudio


Ignore:
Timestamp:
05/26/09 10:16:00 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

warnings on protocol error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/clients.c

    r1835 r1901  
    429429 int i; 
    430430 
    431  if ( g_clients[client] == NULL ) 
    432   return -1; 
     431 if ( g_clients[client] == NULL ) { 
     432  ROAR_WARN("client_stream_exec(client=%i, stream=%i) = -1 // client does not exist", client, stream); 
     433  return -1; 
     434 } 
    433435 
    434436 for (i = 0; i < ROAR_CLIENTS_MAX_STREAMS_PER_CLIENT; i++) { 
     
    441443 } 
    442444 
     445 ROAR_WARN("client_stream_exec(client=%i, stream=%i) = -1 // client does not own stream", client, stream); 
    443446 return -1; 
    444447} 
Note: See TracChangeset for help on using the changeset viewer.