aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2006-07-20 21:29:45 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2006-07-20 21:29:45 +0000
commit7d48cd1e16cbd54358b4fc0b35220f1b61ea850e (patch)
tree7479d458230c5c81ced92d904b1b997a289c6a8c /plugins
parentb16c0406e43a9428bb3abed1d4e1bcb1dc5f5468 (diff)
snprintf -> g_snprintf. Fix up whitespace.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18776 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins')
-rw-r--r--plugins/asn1/packet-asn1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/asn1/packet-asn1.c b/plugins/asn1/packet-asn1.c
index fe8aadadb3..c4e90f364e 100644
--- a/plugins/asn1/packet-asn1.c
+++ b/plugins/asn1/packet-asn1.c
@@ -3066,7 +3066,7 @@ tbl_type(guint n, GNode *pdu, GNode *list, guint fullindex) /* indent, pdu, sour
p->name = ((TBLType *)list->data)->fieldName;
ni = fullindex;
- ni += snprintf(&fieldname[ni], sizeof(fieldname) - ni, ".%s", p->name);
+ ni += g_snprintf(&fieldname[ni], sizeof(fieldname) - ni, ".%s", p->name);
p->fullname = g_strdup(fieldname);
/* initialize field info */