xvc_server: fix message size

This commit is contained in:
Gwenhael Goavec-Merou 2022-07-06 21:36:57 +02:00
parent 975c40a00a
commit 3e35944a4f
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ bool XVC_server::open_connection()
return false;
}
char mess[256];
char mess[512];
snprintf(mess, sizeof(mess),
"INFO: To connect to this xvcServer instance, use: TCP:%s:%d\n\n",
hostname, _port);