summaryrefslogtreecommitdiff
path: root/lib/sbin/create_c_stuff.pl
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-07 13:45:48 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-07 13:45:48 +0000
commit827affd34723a71d28b03d8db8462dfb57317c04 (patch)
tree8fc04359a3468fe22755fee47e040d5554135517 /lib/sbin/create_c_stuff.pl
parenta177bbe7dededce44ec55f922534b85b72985847 (diff)
String valued parameters should be char * not CCTK_CHAR * as
things like strcmp expect char * s. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@685 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 45d44b51..3debb2da 100644
--- a/lib/sbin/create_c_stuff.pl
+++ b/lib/sbin/create_c_stuff.pl
@@ -329,7 +329,7 @@ sub get_c_type_string
$type eq "STRING" ||
$type eq "SENTENCE")
{
- $type_string = "CCTK_CHAR *";
+ $type_string = "char *";
}
elsif($type eq "LOGICAL")
{