aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/compat_isblank.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-10-06 18:32:19 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-10-06 18:32:19 +0000
commitb6d8272551435098c716c546a5201206517e5da9 (patch)
tree223438db91511a96151bc1450143b4c649c40d08 /compat_isblank.c
parenteec76d50a016de5e9c4e0d3504b148892a36aabf (diff)
downloadmandoc-b6d8272551435098c716c546a5201206517e5da9.tar.gz
mandoc-b6d8272551435098c716c546a5201206517e5da9.tar.zst
mandoc-b6d8272551435098c716c546a5201206517e5da9.zip
modernize style: "return" is not a function
Diffstat (limited to 'compat_isblank.c')
-rw-r--r--compat_isblank.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/compat_isblank.c b/compat_isblank.c
index 6147dee7..9e3c7470 100644
--- a/compat_isblank.c
+++ b/compat_isblank.c
@@ -6,7 +6,7 @@ int dummy;
#else
-/* $Id: compat_isblank.c,v 1.1 2015/03/19 14:57:29 schwarze Exp $ */
+/* $Id: compat_isblank.c,v 1.2 2015/10/06 18:32:19 schwarze Exp $ */
/*
* Copyright (c) 2015 Ingo Schwarze <schwarze@openbsd.org>
*
@@ -27,7 +27,7 @@ int
isblank(int c)
{
- return(c == ' ' || c == '\t');
+ return c == ' ' || c == '\t';
}
#endif