Changeset 5162:85c55ccd12a9 in roaraudio for roard/meta.c


Ignore:
Timestamp:
10/16/11 20:12:40 (13 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

fixed some compiler warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/meta.c

    r5135 r5162  
    2828#ifdef ROAR_SUPPORT_META 
    2929 
    30 int stream_meta_set   (int id, int type, char * name, char * val) { 
     30int stream_meta_set   (int id, int type, const char * name, const char * val) { 
    3131 int i; 
    3232 struct roar_stream_server * s = g_streams[id]; 
     
    4848} 
    4949 
    50 int stream_meta_add   (int id, int type, char * name, char * val) { 
     50int stream_meta_add   (int id, int type, const char * name, const char * val) { 
    5151 int i; 
    5252 char * c; 
     
    8585} 
    8686 
    87 int stream_meta_get   (int id, int type, char * name, char * val, size_t len) { 
     87int stream_meta_get   (int id, int type, const char * name, char * val, size_t len) { 
    8888 int i, vallen; 
    8989 struct roar_stream_server * s = g_streams[id]; 
Note: See TracChangeset for help on using the changeset viewer.