From 840aa333724fb9ba8b2985b11471266943bf160c Mon Sep 17 00:00:00 2001 From: sahlberg Date: Mon, 26 Mar 2007 11:06:26 +0000 Subject: From Sebastien Tandel fixes for various compiler warnings git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21210 f5534014-38df-0310-8fa8-9805f1628bb7 --- epan/dissectors/packet-cups.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan/dissectors/packet-cups.c') diff --git a/epan/dissectors/packet-cups.c b/epan/dissectors/packet-cups.c index 5df4063414..d5d86085c4 100644 --- a/epan/dissectors/packet-cups.c +++ b/epan/dissectors/packet-cups.c @@ -340,7 +340,7 @@ get_unquoted_string(tvbuff_t *tvb, gint offset, gint *next_offset, guint *len) guint l = 0; gint o; - o = tvb_pbrk_guint8(tvb, offset, -1, " \t\r\n"); + o = tvb_pbrk_guint8(tvb, offset, -1, (guint8*)" \t\r\n"); if (o != -1) { l = o - offset; s = tvb_get_ptr(tvb, offset, l); -- cgit v1.2.3