X-Git-Url: https://git.cameronkatri.com/mandoc.git/blobdiff_plain/7ca732f0714b3bdace7b2642923a7a0f4919e2d2..f1eb9ac11c55c6ac35cb8ea29c074c6b23f587ee:/compat_isblank.c?ds=inline 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 * @@ -27,7 +27,7 @@ int isblank(int c) { - return(c == ' ' || c == '\t'); + return c == ' ' || c == '\t'; } #endif