fix a warning, set CFLAGS to block new warnings

svn path=/trunk/; revision=21103
This commit is contained in:
Ulf Lamping 2007-03-22 00:11:55 +00:00
parent af9ae7eebb
commit af10d352aa
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ include moduleinfo.nmake
include Makefile.common
CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap $(GLIB_CFLAGS) \
CFLAGS=/WX /DHAVE_CONFIG_H /I../.. /I../../wiretap $(GLIB_CFLAGS) \
/I$(PCAP_DIR)\include -D_U_="" $(LOCAL_CFLAGS)
LDFLAGS = /NOLOGO /INCREMENTAL:no /MACHINE:I386 $(LOCAL_LDFLAGS)

View File

@ -1222,7 +1222,7 @@ static gint dissect_mux_pdu_fragment( tvbuff_t *tvb, guint32 start_offset, packe
#ifdef DEBUG_H223_FRAGMENTATION
g_debug("\tBailing, requesting %i-%i=%u more bytes", pdu_minlen,(offset-start_offset),needed);
#endif
return -needed;
return - (gint) needed;
}
}