aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h264.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2009-04-09 12:41:40 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2009-04-09 12:41:40 +0000
commit8d3f97def2d59bfeda458b56010c692985951835 (patch)
tree51981724d6a96509ce3294eb4df1fcf505677ed8 /epan/dissectors/packet-h264.c
parent0a494e90e8d222d38b4ccc0817a94a5a170f846e (diff)
Fix two usages of non-ascii characters.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28019 f5534014-38df-0310-8fa8-9805f1628bb7
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)