summaryrefslogtreecommitdiff
path: root/src/schedule
diff options
context:
space:
mode:
authorrideout <rideout@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-03-18 16:04:32 +0000
committerrideout <rideout@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-03-18 16:04:32 +0000
commita8d0c1e6d60c5f886d52fea03476c0d46f10ad4d (patch)
tree22f94b275ed7bc222bfe43fde1f1b9c205a841fb /src/schedule
parent4b44fc66030cbe1b59f8e152c7ea36528677634d (diff)
Fix compiler warning of uninitialized variable.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@3177 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/schedule')
-rw-r--r--src/schedule/ScheduleSorter.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/schedule/ScheduleSorter.c b/src/schedule/ScheduleSorter.c
index c96c8cf2..77523dde 100644
--- a/src/schedule/ScheduleSorter.c
+++ b/src/schedule/ScheduleSorter.c
@@ -88,6 +88,7 @@ int CCTKi_ScheduleSort(int size, signed char **array, int *order)
int retval;
retval = 0;
+ column = 0; /* avoid compiler warning about uninitialized variable */
for(iter=0; iter < size*(size-1)/2; iter++)
{