Changeset 5270:e25346c13638 in roaraudio for libroarpulse/context.c


Ignore:
Timestamp:
11/17/11 18:20:12 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

fixed some gcc -Wextra warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroarpulse/context.c

    r4708 r5270  
    221221/** Return non-zero if some data is pending to be written to the connection */ 
    222222int pa_context_is_pending(pa_context *c) { 
     223 (void)c; 
    223224 return 0; 
    224225} 
     
    334335/** Return the protocol version of the library. \since 0.8 */ 
    335336uint32_t pa_context_get_protocol_version(pa_context *c) { 
     337 (void)c; 
    336338 return 0; 
    337339} 
     
    339341/** Return the protocol version of the connected server. \since 0.8 */ 
    340342uint32_t pa_context_get_server_protocol_version(pa_context *c) { 
     343 (void)c; 
    341344 return 0; 
    342345} 
Note: See TracChangeset for help on using the changeset viewer.