Small fix: make istext static

This takes away a build failure in some cases.

Reviewed-by: Tim Hudson <tjh@openssl.org>
This commit is contained in:
Richard Levitte 2015-09-06 22:43:25 +02:00
parent 5f62e044d3
commit 496f4f9d6a

View File

@ -2721,7 +2721,7 @@ int raw_write_stdout(const void *buf, int siz)
* does impact behavior on some platform, such as differentiating between
* text and binary input/output on non-Unix platforms
*/
inline int istext(int format)
static int istext(int format)
{
return (format & B_FORMAT_TEXT) == B_FORMAT_TEXT;
}