silence silly warning

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3404 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2006-11-18 16:39:45 +00:00
parent b0dde8deb9
commit 2ce49f8f0b
1 changed files with 3 additions and 0 deletions

View File

@ -34,6 +34,9 @@
#define SMIN -32768
#define normalize_to_16bit(n) if (n > SMAX) n = SMAX; else if (n < SMIN) n = SMIN;
#ifdef _MSC_VER
#pragma warning(disable:4706)
#endif
int teletone_set_tone(teletone_generation_session_t *ts, int index, ...)