1
1

Tell C compiler we don't care about return code of libssh2_init

The call of libssh2_init returns a return code, but nothing could be done
within the _libssh2_init_if_needed execution path.

Signed-off-by: Steven Dake <sdake@redhat.com>
Этот коммит содержится в:
Steven Dake 2012-03-08 08:35:29 +01:00 коммит произвёл Daniel Stenberg
родитель 5672e8f4cf
Коммит 7e53949e66

Просмотреть файл

@ -74,5 +74,5 @@ void
_libssh2_init_if_needed(void)
{
if (_libssh2_initialized == 0)
libssh2_init (0);
(void)libssh2_init (0);
}