From: Thomas Vander Stichele Date: Mon, 8 May 2006 15:53:12 +0000 (+0000) Subject: gdp: whitespace, comment, doc fixup X-Git-Tag: 1.19.3~511^2~7020^2~30 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8afe1aa8e9230807126c88501f42855c4788a63a;p=platform%2Fupstream%2Fgstreamer.git gdp: whitespace, comment, doc fixup Original commit message from CVS: whitespace, comment, doc fixup --- diff --git a/gst/gdp/dataprotocol.c b/gst/gdp/dataprotocol.c index 4f909b1..4620064 100644 --- a/gst/gdp/dataprotocol.c +++ b/gst/gdp/dataprotocol.c @@ -549,7 +549,7 @@ gst_dp_validate_header (guint header_length, const guint8 * header) if (!(GST_DP_HEADER_FLAGS (header) & GST_DP_HEADER_FLAG_CRC_HEADER)) return TRUE; crc_read = GST_DP_HEADER_CRC_HEADER (header); - /* don't included the last two crc fields for the crc check */ + /* don't include the last two crc fields for the crc check */ crc_calculated = gst_dp_crc (header, header_length - 4); if (crc_read != crc_calculated) { GST_WARNING ("header crc mismatch: read %02x, calculated %02x", crc_read,