summaryrefslogtreecommitdiff
path: root/src/schedule/ScheduleTraverse.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/schedule/ScheduleTraverse.c')
-rw-r--r--src/schedule/ScheduleTraverse.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/schedule/ScheduleTraverse.c b/src/schedule/ScheduleTraverse.c
index 1baa0ad3..37456b26 100644
--- a/src/schedule/ScheduleTraverse.c
+++ b/src/schedule/ScheduleTraverse.c
@@ -39,7 +39,7 @@ static int ScheduleTraverseGroup(cHandledData *schedule_groups,
int (*item_entry)(void *, void *),
int (*item_exit)(void *, void *),
int (*while_check)(int, char **, void *, void *, int),
- int (*if_check)(int, char **, void *, void *),
+ int (*if_check)(int, char **, void *, void *, int),
int (*function_process)(void *, void *, void *),
void *data);
@@ -52,7 +52,7 @@ static int ScheduleTraverseFunction(void *function,
int (*item_entry)(void *, void *),
int (*item_exit)(void *, void *),
int (*while_check)(int, char **, void *, void *, int),
- int (*if_check)(int, char **, void *, void *),
+ int (*if_check)(int, char **, void *, void *, int),
int (*function_process)(void *, void *, void *),
void *data);
@@ -140,7 +140,7 @@ int CCTKi_DoScheduleTraverse(const char *group_name,
int (*item_entry)(void *, void *),
int (*item_exit)(void *, void *),
int (*while_check)(int, char **, void *, void *, int),
- int (*if_check)(int, char **, void *, void *),
+ int (*if_check)(int, char **, void *, void *, int),
int (*function_process)(void *, void *, void *),
void *data)
{
@@ -300,7 +300,7 @@ static int ScheduleTraverseGroup(cHandledData *schedule_groups,
int (*item_entry)(void *, void *),
int (*item_exit)(void *, void *),
int (*while_check)(int, char **, void *, void *, int),
- int (*if_check)(int, char **, void *, void *),
+ int (*if_check)(int, char **, void *, void *, int),
int (*function_process)(void *, void *, void *),
void *data)
{
@@ -317,7 +317,7 @@ static int ScheduleTraverseGroup(cHandledData *schedule_groups,
if(n_ifs > 0 && if_check)
{
- doit = doit && if_check(n_ifs, ifs, attributes, data);
+ doit = doit && if_check(n_ifs, ifs, attributes, data, 1);
}
/* If there is a while-list associated with this item, check if the
@@ -337,7 +337,7 @@ static int ScheduleTraverseGroup(cHandledData *schedule_groups,
if(n_whiles > 0 && while_check)
{
- doit = doit && while_check(n_whiles, whiles, attributes, data,1);
+ doit = doit && while_check(n_whiles, whiles, attributes, data, 1);
}
/* Call a item entry function if it is defined. */
@@ -403,7 +403,7 @@ static int ScheduleTraverseGroup(cHandledData *schedule_groups,
/* Check the while_list again. */
if(n_whiles > 0 && while_check)
{
- doit = while_check(n_whiles, whiles, attributes, data,0);
+ doit = while_check(n_whiles, whiles, attributes, data, 0);
}
else
{
@@ -534,7 +534,7 @@ static int ScheduleTraverseFunction(void *function,
int (*item_entry)(void *, void *),
int (*item_exit)(void *, void *),
int (*while_check)(int, char **, void *, void *, int),
- int (*if_check)(int, char **, void *, void *),
+ int (*if_check)(int, char **, void *, void *, int),
int (*function_process)(void *, void *, void *),
void *data)
{
@@ -549,7 +549,7 @@ static int ScheduleTraverseFunction(void *function,
if(n_ifs > 0 && if_check)
{
- doit = doit && if_check(n_ifs, ifs, attributes, data);
+ doit = doit && if_check(n_ifs, ifs, attributes, data, 1);
}
/* If there is a while-list associated with this function, check if
@@ -558,7 +558,7 @@ static int ScheduleTraverseFunction(void *function,
if(n_whiles > 0 && while_check)
{
- doit = doit && while_check(n_whiles, whiles, attributes, data,1);
+ doit = doit && while_check(n_whiles, whiles, attributes, data, 1);
}
/* Call a item entry function if it is defined. */
@@ -586,7 +586,7 @@ static int ScheduleTraverseFunction(void *function,
/* Check the while_list again. */
if(n_whiles > 0 && while_check)
{
- doit = while_check(n_whiles, whiles, attributes, data,0) ;
+ doit = while_check(n_whiles, whiles, attributes, data, 0);
}
else
{