summaryrefslogtreecommitdiff
path: root/src/main/ScheduleInterface.c
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-03-25 10:05:32 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-03-25 10:05:32 +0000
commit3f7aaf2548ef8b4860972652162fb9c166e38ad5 (patch)
tree3dabac88f7c22ba777733551a922654f8442720a /src/main/ScheduleInterface.c
parent559c367f024d6b087c612c8f9967972770fde9bb (diff)
Fixed the indentation level when printing scheduled groups.
This closes PR Cactus/943. git-svn-id: http://svn.cactuscode.org/flesh/trunk@2664 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/ScheduleInterface.c')
-rw-r--r--src/main/ScheduleInterface.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/ScheduleInterface.c b/src/main/ScheduleInterface.c
index e5b8858f..8e5d7218 100644
--- a/src/main/ScheduleInterface.c
+++ b/src/main/ScheduleInterface.c
@@ -1885,17 +1885,17 @@ static int CCTKi_SchedulePrintWhile(int n_whiles,
{
if(i > 0)
{
- printf(" && ");
+ puts(" && ");
}
- printf("%s", whiles[i]);
+ puts(whiles[i]);
}
- printf(")\n");
+ puts(")\n");
}
else
{
- printf("%*s", indent_level + 9, "end while\n");
+ printf("%*s\n", indent_level + 9, "end while");
}
return first;