DLT: Fix gint64 printf format

Use G_GINT64_FORMAT for gint64.

Change-Id: I50e82a45d51b97f0e15d90082b71fd53e65d83a6
Reviewed-on: https://code.wireshark.org/review/34499
Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
This commit is contained in:
Stig Bjørlykke 2019-09-10 22:36:44 +02:00
parent ed4c62e3f7
commit 8ad0915c4f
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ dissect_dlt_verbose_parameter_int(tvbuff_t *tvb, packet_info *pinfo, proto_tree
}
}
col_append_fstr(pinfo->cinfo, COL_INFO, " %" G_GUINT64_FORMAT, value);
col_append_fstr(pinfo->cinfo, COL_INFO, " %" G_GINT64_FORMAT, value);
return length;
}