From: Richard Levitte Date: Sun, 6 Sep 2015 20:43:25 +0000 (+0200) Subject: Small fix: make istext static X-Git-Tag: OpenSSL_1_1_0-pre1~694 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=496f4f9d6af6f69d604c1cedfeb956159b66846e;p=oweals%2Fopenssl.git Small fix: make istext static This takes away a build failure in some cases. Reviewed-by: Tim Hudson --- diff --git a/apps/apps.c b/apps/apps.c index d4af862a18..5c36a374f5 100644 --- a/apps/apps.c +++ b/apps/apps.c @@ -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; }