# HG changeset patch # User diego # Date 1284245273 0 # Node ID 048d9fffd7402fd786cd49533c1a9b37e5dc0e08 # Parent d947ba580cc9b8d4458bad44560d9b3f5b51b279 Remove pointless typedef keyword from struct RTPState declaration; fixes: libmpdemux/demux_rtp.cpp:90: warning: 'typedef' was ignored in this declaration diff -r d947ba580cc9 -r 048d9fffd740 libmpdemux/demux_rtp.cpp --- a/libmpdemux/demux_rtp.cpp Sat Sep 11 22:31:29 2010 +0000 +++ b/libmpdemux/demux_rtp.cpp Sat Sep 11 22:47:53 2010 +0000 @@ -78,7 +78,7 @@ // A structure of RTP-specific state, kept so that we can cleanly // reclaim it: -typedef struct RTPState { +struct RTPState { char const* sdpDescription; RTSPClient* rtspClient; SIPClient* sipClient;