trivial signed/unsigned warning fixes
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 23 Jan 2004 00:43:15 +0000 (00:43 +0000)
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 23 Jan 2004 00:43:15 +0000 (00:43 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9791 f5534014-38df-0310-8fa8-9805f1628bb7

rdps.c

diff --git a/rdps.c b/rdps.c
index 4c98e475f7d0645ade87847d8b451dc8b739c595..55158bb1efc968e3ea158e920bcb56bef03694e3 100644 (file)
--- a/rdps.c
+++ b/rdps.c
@@ -1,6 +1,6 @@
 /* rdps.c
  *
- * $Id: rdps.c,v 1.5 2002/08/28 21:00:41 jmayer Exp $
+ * $Id: rdps.c,v 1.6 2004/01/23 00:43:15 jmayer Exp $
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
  * Copyright 1998 Gerald Combs
@@ -41,7 +41,7 @@ with 2 functions:
 void start_code(FILE *fd, char *func);
 void write_code(FILE *fd, char *string);
 void end_code(FILE *fd);
-void ps_clean_string(unsigned char *out, const unsigned char *in,
+void ps_clean_string(char *out, const char *in,
                        int outbuf_size);
 
 enum ps_state { null, preamble, hex, finale };
@@ -142,7 +142,7 @@ void end_code(FILE *fd)
        fprintf(fd, "}\n\n\n");
 }
 
-void ps_clean_string(unsigned char *out, const unsigned char *in,
+void ps_clean_string(char *out, const char *in,
                        int outbuf_size)
 {
        int rd, wr;