aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/frame.c b/main/frame.c
index 6b5cd794d..1bc4dca76 100644
--- a/main/frame.c
+++ b/main/frame.c
@@ -834,7 +834,7 @@ void ast_frame_dump(const char *name, struct ast_frame *f, char *prefix)
strcpy(subclass, "Unhold");
break;
case AST_CONTROL_T38_PARAMETERS:
- if (f->datalen != sizeof(struct ast_control_t38_parameters *)) {
+ if (f->datalen != sizeof(struct ast_control_t38_parameters)) {
message = "Invalid";
} else {
struct ast_control_t38_parameters *parameters = f->data;