From 471e4e5fa698a9eeaef184d9acea32ad9aac2fe9 Mon Sep 17 00:00:00 2001 From: "mostang.com!davidm" Date: Thu, 1 Apr 2004 06:27:06 +0000 Subject: [PATCH] Minor whitespace fixes. (Logical change 1.202) --- tests/Gtest-concurrent.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/Gtest-concurrent.c b/tests/Gtest-concurrent.c index 3378decd..638ad342 100644 --- a/tests/Gtest-concurrent.c +++ b/tests/Gtest-concurrent.c @@ -1,5 +1,5 @@ /* libunwind - a platform-independent unwind library - Copyright (C) 2003 Hewlett-Packard Co + Copyright (C) 2003-2004 Hewlett-Packard Co Contributed by David Mosberger-Tang Permission is hereby granted, free of charge, to any person obtaining @@ -52,15 +52,15 @@ handler (int sig) unw_cursor_t c; int ret; - unw_getcontext(&uc); - unw_init_local(&c, &uc); + unw_getcontext (&uc); + unw_init_local (&c, &uc); do { - unw_get_reg(&c, UNW_REG_IP, &ip); + unw_get_reg (&c, UNW_REG_IP, &ip); if (verbose) printf ("%lx: IP=%lx\n", (long) pthread_self (), (unsigned long) ip); } - while ((ret = unw_step(&c)) > 0); + while ((ret = unw_step (&c)) > 0); if (ret < 0) panic ("unw_step() returned %d\n", ret);