Arduino Ethernet Shield SMTP Email Compile Error

Hello all,

The arduino compiler is giving me a crazy message and i cannot figure out why, does anyone know??
using this line of code it compiles fine

byte server[] = ( 212, 74, 100, 190 );  // POP3

using this line of code i get an error

byte server[] = ( 212, 74, 100, 35 );  // SMTP

error: initializer fails to determine size of 'server'

the MAC & IP settings are generic, the email checker sketch works so i know they are correct and i can log into 212.74.100.35 with Telnet and send an email so i know the IP is correct, i just dont understand this error, nothings changed only the IP, just to confirm, i put that ip into the working webclient example sketch and it comes up with the same error

Thanks in advance

The initializer list is supposed to be enclosed by {}, not ().

Thanks PaulS, such a stupid mistake, it works now and connects sending me an email whenever an event happens, thanks again