From f0227ea3c78d8d23dc35f0939219649447eecfae Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Mon, 23 Sep 2002 00:31:31 +0000 Subject: More GNUify non-GNU formatted functions calls throughout. --- winsup/cygwin/strace.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'winsup/cygwin/strace.cc') diff --git a/winsup/cygwin/strace.cc b/winsup/cygwin/strace.cc index 4a8b48c3c..506d44ec9 100644 --- a/winsup/cygwin/strace.cc +++ b/winsup/cygwin/strace.cc @@ -20,8 +20,8 @@ details. */ #include "hires.h" #include "cygthread.h" -#define PROTECT(x) x[sizeof(x)-1] = 0 -#define CHECK(x) if (x[sizeof(x)-1] != 0) { small_printf ("array bound exceeded %d\n", __LINE__); ExitProcess (1); } +#define PROTECT(x) x[sizeof (x)-1] = 0 +#define CHECK(x) if (x[sizeof (x)-1] != 0) { small_printf ("array bound exceeded %d\n", __LINE__); ExitProcess (1); } class strace NO_COPY strace; @@ -77,7 +77,7 @@ getfunc (char *in_dst, const char *func) for (p = func; (pe = strchr (p, '(')); p = pe + 1) if (isalnum ((int)pe[-1]) || pe[-1] == '_') break; - else if (isspace((int)pe[-1])) + else if (isspace ((int)pe[-1])) { pe--; break; -- cgit v1.2.3