gdp: whitespace, comment, doc fixup
authorThomas Vander Stichele <thomas@apestaart.org>
Mon, 8 May 2006 15:53:12 +0000 (15:53 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sun, 25 Dec 2011 22:49:58 +0000 (22:49 +0000)
Original commit message from CVS:
whitespace, comment, doc fixup

gst/gdp/dataprotocol.c

index 4f909b1..4620064 100644 (file)
@@ -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,