aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h264.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2009-04-09 12:41:40 +0000
committerBill Meier <wmeier@newsguy.com>2009-04-09 12:41:40 +0000
commit08ab84314373ed4feda181d364300b911a472168 (patch)
tree51981724d6a96509ce3294eb4df1fcf505677ed8 /epan/dissectors/packet-h264.c
parent90e55db489b40d728fce39ec35de4cfccfa4915d (diff)
Fix two usages of non-ascii characters.
svn path=/trunk/; revision=28019
Diffstat (limited to 'epan/dissectors/packet-h264.c')
-rw-r--r--epan/dissectors/packet-h264.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-h264.c b/epan/dissectors/packet-h264.c
index b8e2abffec..aa182bf950 100644
--- a/epan/dissectors/packet-h264.c
+++ b/epan/dissectors/packet-h264.c
@@ -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)