summaryrefslogtreecommitdiff
path: root/src/util/CactusTimers.c
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-11-24 20:50:59 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-11-24 20:50:59 +0000
commitd475e8040a76eb7776eb5ed8f3f3edc0f417f6c7 (patch)
treee377c6a035918a2ef81c2655946a11b27513e253 /src/util/CactusTimers.c
parent1de5cce82d9fac333fba971bd5c19547c4d22abe (diff)
Removed tabs from files.
Added @version lines to various header files. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1170 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/util/CactusTimers.c')
-rw-r--r--src/util/CactusTimers.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/util/CactusTimers.c b/src/util/CactusTimers.c
index e0cb9eac..dda34503 100644
--- a/src/util/CactusTimers.c
+++ b/src/util/CactusTimers.c
@@ -118,16 +118,16 @@ int CCTK_TimerCreate(const char *name)
if(timer->data)
{
- /* Store the data structure for this timer */
- this_timer = Util_NewHandle(&timers, name, timer);
+ /* Store the data structure for this timer */
+ this_timer = Util_NewHandle(&timers, name, timer);
- /* Create the timer info for this timer */
- for(handle = 0; handle < n_timertypes; handle++)
- {
- funcs = (t_TimerFuncs *)Util_GetHandledData(handles, handle);
+ /* Create the timer info for this timer */
+ for(handle = 0; handle < n_timertypes; handle++)
+ {
+ funcs = (t_TimerFuncs *)Util_GetHandledData(handles, handle);
- timer->data[handle] = funcs->create(this_timer);
- }
+ timer->data[handle] = funcs->create(this_timer);
+ }
retval = this_timer;
}
else