# HG changeset patch # User rbultje # Date 1270484031 0 # Node ID bd378c64a9f590960a52520766232d165b3eaaa1 # Parent d9f196991fe46a235a7c11cf24ec9d046c272139 Add void to a function prototype that takes no arguments. Fixes a potential compiler warning. diff -r d9f196991fe4 -r bd378c64a9f5 rtpdec.h --- a/rtpdec.h Sun Apr 04 22:19:42 2010 +0000 +++ b/rtpdec.h Mon Apr 05 16:13:51 2010 +0000 @@ -140,7 +140,7 @@ int st_index, PayloadContext *priv_data, const char *line); ///< Parse the a= line from the sdp field - PayloadContext *(*open) (); ///< allocate any data needed by the rtp parsing for this dynamic data. + PayloadContext *(*open) (void); ///< allocate any data needed by the rtp parsing for this dynamic data. void (*close)(PayloadContext *protocol_data); ///< free any data needed by the rtp parsing for this dynamic data. DynamicPayloadPacketHandlerProc parse_packet; ///< parse handler for this dynamic packet.