SDL Net minor bug fixed

Hello,

Can I request changes in SDL net from

int SDLNet_ResolveHost(IPaddress *address, char *host, Uint16 port);

to

int SDLNet_ResolveHost(IPaddress *address, const char *host, Uint16 port);

the const allow to call this funciton directly from something like :

string ip=“192.168.2.1”;
IPaddress ipadd;
SDLNet_ResolveHost(&ipadd,ip.c_str(),745);

Stephane