Show
Ignore:
Timestamp:
06/21/07 10:07:01 (19 months ago)
Author:
aj
Message:

fix compiler/sparse warnings.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/libopensc/card-belpic.c

    r2993 r3177  
    423423}; 
    424424 
    425 static inline void TLVInit(struct tTLV *tlv, u8 * base, size_t size) 
     425static void TLVInit(struct tTLV *tlv, u8 * base, size_t size) 
    426426{ 
    427427        tlv->base = base; 
     
    430430} 
    431431 
    432 static inline void TLVNext(struct tTLV *tlv, u8 tag) 
     432static void TLVNext(struct tTLV *tlv, u8 tag) 
    433433{ 
    434434        assert(tlv->next + 2 < tlv->end); 
     
    438438} 
    439439 
    440 static inline void TLVAdd(struct tTLV *tlv, u8 val) 
     440static void TLVAdd(struct tTLV *tlv, u8 val) 
    441441{ 
    442442        assert(tlv->next + 1 < tlv->end); 
     
    445445} 
    446446 
    447 static inline void TLVAddBuffer(struct tTLV *tlv, u8 * val, size_t size) 
     447static void TLVAddBuffer(struct tTLV *tlv, u8 * val, size_t size) 
    448448{ 
    449449        assert(tlv->next + size < tlv->end);