aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-hilscher.c
diff options
context:
space:
mode:
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2008-07-11 19:18:54 +0000
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2008-07-11 19:18:54 +0000
commit44300c6612c2a5a3361eb2819727f256519529f3 (patch)
tree4f938b652ac12b9904a4249a70bb50b82ade56ea /epan/dissectors/packet-hilscher.c
parent49b04097d9d9a1e7f32c4f4c7d624b86f941900e (diff)
Change a guchar to gchar: it's used as a regular string
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25707 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-hilscher.c')
-rw-r--r--epan/dissectors/packet-hilscher.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-hilscher.c b/epan/dissectors/packet-hilscher.c
index 1e215ecf25..130ae0fb8c 100644
--- a/epan/dissectors/packet-hilscher.c
+++ b/epan/dissectors/packet-hilscher.c
@@ -91,10 +91,10 @@ static const value_string gpio_edge[] = {
static void
dissect_hilscher_netanalyzer(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, guint offset)
{
- proto_item *ti = NULL;
- guint gpio_num;
- guint gpio_edgex;
- guchar *szInfo = NULL;
+ proto_item *ti = NULL;
+ guint gpio_num;
+ guint gpio_edgex;
+ gchar *szInfo = NULL;
#define MAX_BUFFER 60
szInfo=ep_alloc(MAX_BUFFER);