summaryrefslogtreecommitdiff
path: root/lib/sbin/create_c_stuff.pl
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-05-19 18:57:31 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-05-19 18:57:31 +0000
commit5b23d000ac2d4727db790fc10a668c5faaa112d2 (patch)
treeb3acf1913c4e80f4939d914d85977d0b148d00e5 /lib/sbin/create_c_stuff.pl
parent4e06ab4a94c66fb19ad071a523c4f6a51f688eaf (diff)
Parameters should be decalred as constant.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@2195 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin/create_c_stuff.pl')
-rw-r--r--lib/sbin/create_c_stuff.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sbin/create_c_stuff.pl b/lib/sbin/create_c_stuff.pl
index 87ec030c..aae35679 100644
--- a/lib/sbin/create_c_stuff.pl
+++ b/lib/sbin/create_c_stuff.pl
@@ -272,7 +272,7 @@ sub CreateCStructureParameterHeader
foreach $line (@definition)
{
- push(@data, " $line \\");
+ push(@data, " const $line \\");
}
push(@data, "");