summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-03-26 14:12:36 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-03-26 14:12:36 +0000
commit50fbd3f604faff23f5f4e2a824856e46bcb62d40 (patch)
tree3318d97e0274ecf7ef356c167b90246c9fe0ac92 /src
parentb836381e9226f44d8d3ada08af6fd63d42d5fc01 (diff)
Formatting change when printing out group names. Only puts a label at the
beginning of a group now. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@2670 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src')
-rw-r--r--src/main/ScheduleInterface.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/main/ScheduleInterface.c b/src/main/ScheduleInterface.c
index 2143d417..e57d426a 100644
--- a/src/main/ScheduleInterface.c
+++ b/src/main/ScheduleInterface.c
@@ -1785,7 +1785,7 @@ static int CCTKi_SchedulePrintEntry(t_attribute *attribute,
if (attribute && attribute->type == sched_group)
{
- printf("%*s %s\n", indent_level + 11, "begin group",
+ printf("%*s %s\n", indent_level + 6, "GROUP:",
attribute->FunctionData.routine);
}
@@ -1821,13 +1821,8 @@ static int CCTKi_SchedulePrintExit(t_attribute *attribute,
t_sched_data *data)
{
/* prevent compiler warnings about unused parameters */
- data = data;
-
- if (attribute && attribute->type == sched_group)
- {
- printf("%*s %s\n", indent_level + 2 + 9, "end group",
- attribute->FunctionData.routine);
- }
+ data = data;
+ attribute = attribute;
indent_level -= 2;