From 0d9679de8dd6536bf1d0c9664489f4c35b1e6270 Mon Sep 17 00:00:00 2001 From: Ulf Lamping Date: Mon, 5 Jan 2004 19:31:44 +0000 Subject: removed some MSVC warnings (level 3) svn path=/trunk/; revision=9561 --- capture-wpcap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'capture-wpcap.c') diff --git a/capture-wpcap.c b/capture-wpcap.c index ac43078d73..618dd58747 100644 --- a/capture-wpcap.c +++ b/capture-wpcap.c @@ -3,7 +3,7 @@ * time, so that we only need one Ethereal binary and one Tethereal binary * for Windows, regardless of whether WinPcap is installed or not. * - * $Id: capture-wpcap.c,v 1.7 2003/12/21 12:18:59 ulfl Exp $ + * $Id: capture-wpcap.c,v 1.8 2004/01/05 19:31:42 ulfl Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -348,7 +348,7 @@ get_interface_list(int *err, char *err_str) j = 0; while (names[i] != 0) { if (j < MAX_WIN_IF_NAME_LEN) - ascii_name[j++] = names[i++]; + ascii_name[j++] = (char) names[i++]; } ascii_name[j] = '\0'; i++; -- cgit v1.2.3