aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-usbll.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-usbll.c')
-rw-r--r--epan/dissectors/packet-usbll.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-usbll.c b/epan/dissectors/packet-usbll.c
index 326d356447..5ad55be5f0 100644
--- a/epan/dissectors/packet-usbll.c
+++ b/epan/dissectors/packet-usbll.c
@@ -798,11 +798,11 @@ static int usbll_addr_to_str(const address* addr, gchar *buf, int buf_len)
* In split transaction we use : to mark that the last part is port not
* endpoint.
*/
- g_snprintf(buf, buf_len, "%d:%d", addrp->device,
+ snprintf(buf, buf_len, "%d:%d", addrp->device,
addrp->endpoint);
} else {
/* Just a standard address.endpoint notation. */
- g_snprintf(buf, buf_len, "%d.%d", addrp->device,
+ snprintf(buf, buf_len, "%d.%d", addrp->device,
addrp->endpoint);
}