From dd8f6f3d4808ed43d9f199e09ed4fe46bd1388cd Mon Sep 17 00:00:00 2001 From: "pbos@webrtc.org" Date: Thu, 18 Dec 2014 09:18:42 +0000 Subject: [PATCH] Rename rtpDumpPktHdr_t to RtpDumpPacketHeader. _t names are reserved in POSIX. BUG=162 R=asapersson@webrtc.org Review URL: https://webrtc-codereview.appspot.com/34519004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7945 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/utility/source/rtp_dump_impl.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webrtc/modules/utility/source/rtp_dump_impl.cc b/webrtc/modules/utility/source/rtp_dump_impl.cc index cab4065c92..c9cb2eead3 100644 --- a/webrtc/modules/utility/source/rtp_dump_impl.cc +++ b/webrtc/modules/utility/source/rtp_dump_impl.cc @@ -55,7 +55,7 @@ typedef struct uint16_t plen; // Milliseconds since the start of recording. uint32_t offset; -} rtpDumpPktHdr_t; +} RtpDumpPacketHeader; RtpDump* RtpDump::CreateRtpDump() { @@ -159,7 +159,7 @@ int32_t RtpDumpImpl::DumpPacket(const uint8_t* packet, size_t packetLength) return -1; } - rtpDumpPktHdr_t hdr; + RtpDumpPacketHeader hdr; size_t total_size = packetLength + sizeof hdr; if (packetLength < 1 || total_size > std::numeric_limits::max()) {