add "#pragma warning(disable:4146)"

svn path=/trunk/; revision=21223
This commit is contained in:
Ulf Lamping 2007-03-27 02:47:54 +00:00
parent 4cc5c2ca24
commit 6b8bae8704
1 changed files with 7 additions and 0 deletions

View File

@ -47,6 +47,13 @@
#define PSNAME "RRLP"
#define PFNAME "rrlp"
#ifdef _WIN32
/* disable: "warning C4146: unary minus operator applied to unsigned type, result still unsigned" */
#pragma warning(disable:4146)
#endif
static dissector_handle_t rrlp_handle=NULL;