Skip to content

Commit

Permalink
Small fix: make istext static
Browse files Browse the repository at this point in the history
This takes away a build failure in some cases.

Reviewed-by: Tim Hudson <tjh@openssl.org>
  • Loading branch information
levitte committed Sep 6, 2015
1 parent 5f62e04 commit 496f4f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/apps.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 496f4f9

Please sign in to comment.