Fix two usages of non-ascii characters.

svn path=/trunk/; revision=28019
This commit is contained in:
Bill Meier 2009-04-09 12:41:40 +00:00
parent 90e55db489
commit 08ab843143
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
*
* Common variables for H.263 dissectors
*
* Copyright 2003 Niklas gren <niklas.ogren@7l.se>
* Copyright 2003 Niklas Ogren <niklas.ogren@7l.se>
* Seven Levels Consultants AB
*
* Copyright 2008 Richard van der Hoff, MX Telecom

View File

@ -355,10 +355,10 @@ static const value_string h264_slice_type_vals[] = {
{ 0, NULL }
};
/* byte_aligned( ) is specified as follows.
* If the current position in the bitstream is on a byte boundary, i.e.,
* - If the current position in the bitstream is on a byte boundary, i.e.,
* the next bit in the bitstream is the first bit in a byte,
* the return value of byte_aligned( ) is equal to TRUE.
* Otherwise, the return value of byte_aligned( ) is equal to FALSE.
* - Otherwise, the return value of byte_aligned( ) is equal to FALSE.
*/
static gboolean
h264_byte_aligned(int bit_offset)