Skip to content

Commit

Permalink
Another compile fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ludwig committed Sep 2, 2017
1 parent b62baec commit ffe1ce0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/vibe/stream/openssl.d
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ final class OpenSSLStream : TLSStream {
{
() @trusted { SSL_peek(m_tls, m_peekBuffer.ptr, 1); } ();
checkExceptions();
return SSL_pending(m_tls);
return () @trusted { return SSL_pending(m_tls); } ();
}

@property bool dataAvailableForRead()
Expand Down

0 comments on commit ffe1ce0

Please sign in to comment.