Fixed compiler warning in connect engine

This commit is contained in:
Olivier Bertrand 2019-03-25 23:58:04 +01:00
commit 4e583a276f

View file

@ -526,7 +526,7 @@ BOOL PlugSubSet(void *memp, uint size)
/***********************************************************************/
/* Use it to export a function that do throwing. */
/***********************************************************************/
void *DoThrow(int n)
static void *DoThrow(int n)
{
throw n;
} /* end of DoThrow */