summaryrefslogtreecommitdiff
path: root/lib/sbin/CreateFunctionBindings.pl
diff options
context:
space:
mode:
authorschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-11-05 21:30:45 +0000
committerschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-11-05 21:30:45 +0000
commitbcb2ff90c85cbd42046e4472bcee1194f58d1f61 (patch)
treeaa7acf5a1a49d5d2871d67fef5e2054d86bc9b0e /lib/sbin/CreateFunctionBindings.pl
parentbff5c4e02e833eb99c10cc1d679a08b65aa8dc20 (diff)
Sort keys before looping to avoid changing cctk_Functions.h
git-svn-id: http://svn.cactuscode.org/flesh/trunk@3450 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin/CreateFunctionBindings.pl')
-rw-r--r--lib/sbin/CreateFunctionBindings.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sbin/CreateFunctionBindings.pl b/lib/sbin/CreateFunctionBindings.pl
index 626139dd..f0dc6b6f 100644
--- a/lib/sbin/CreateFunctionBindings.pl
+++ b/lib/sbin/CreateFunctionBindings.pl
@@ -1602,7 +1602,7 @@ sub ThornMasterIncludes
my $thorn;
- foreach $thorn (keys %function_db)
+ foreach $thorn (sort keys %function_db)
{
my $localfns = keys %{$function_db{$thorn}};
if ($localfns)