(svn r21135) -Fix (r19870): silencing gcc 3.3 warnings caused gcc 4.0 to warn

This commit is contained in:
smatz 2010-11-10 19:54:20 +00:00
parent 1ddc05e822
commit b8cb654adc
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ static bool UpdateClientConfigValues(int32 p1);
*/
#define NSD_GENERAL(name, def, cmd, guiflags, min, max, interval, many, str, proc, load)\
{name, (const void*)(ptrdiff_t)(def), {(byte)cmd}, {(uint16)guiflags}, min, max, interval, many, str, proc, load}
{name, (const void*)(size_t)(def), {(byte)cmd}, {(uint16)guiflags}, min, max, interval, many, str, proc, load}
/* Macros for various objects to go in the configuration file.
* This section is for global variables */