summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-qsig.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-qsig.c')
-rw-r--r--epan/dissectors/packet-qsig.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-qsig.c b/epan/dissectors/packet-qsig.c
index dda9e86a75..7588b81455 100644
--- a/epan/dissectors/packet-qsig.c
+++ b/epan/dissectors/packet-qsig.c
@@ -12352,7 +12352,7 @@ static const qsig_err_t qsig_err_tab[] = {
static const qsig_op_t *get_op(gint32 opcode) {
int i;
- /* search from the end to get the last occurence if the operation is redefined in some newer specification */
+ /* search from the end to get the last occurrence if the operation is redefined in some newer specification */
for (i = array_length(qsig_op_tab) - 1; i >= 0; i--)
if (qsig_op_tab[i].opcode == opcode)
return &qsig_op_tab[i];
@@ -12368,7 +12368,7 @@ static gint32 get_service(gint32 opcode) {
static const qsig_err_t *get_err(gint32 errcode) {
int i;
- /* search from the end to get the last occurence if the operation is redefined in some newer specification */
+ /* search from the end to get the last occurrence if the operation is redefined in some newer specification */
for (i = array_length(qsig_err_tab) - 1; i >= 0; i--)
if (qsig_err_tab[i].errcode == errcode)
return &qsig_err_tab[i];