More polishing for the About dialog

This commit is contained in:
Berke Viktor
2012-10-28 00:05:40 +02:00
parent d892b3346e
commit fe1d958838
6 changed files with 11 additions and 11 deletions

View File

@@ -139,10 +139,10 @@ ctcp_handle (session *sess, char *to, char *nick, char *ip,
{
#ifdef WIN32
snprintf (outbuf, sizeof (outbuf), "VERSION HexChat "PACKAGE_VERSION" [x%d] / %s",
get_cpu_arch (), get_cpu_str ());
get_cpu_arch (), get_sys_str (1));
#else
snprintf (outbuf, sizeof (outbuf), "VERSION HexChat "PACKAGE_VERSION" / %s",
get_cpu_str ());
get_sys_str (1));
#endif
serv->p_nctcp (serv, nick, outbuf);
}