summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreschnett <eschnett@17b73243-c579-4c4c-a9d2-2d5706c11dac>2013-03-11 17:13:56 +0000
committereschnett <eschnett@17b73243-c579-4c4c-a9d2-2d5706c11dac>2013-03-11 17:13:56 +0000
commit875db017ab1fedd1eb3d3241c0459804303cb21e (patch)
treefc3384b06ded9a9be0293868d287124490a86a57
parent447087097856cdd909674c70929e1ad2052eb3b2 (diff)
Add a bit of white space to generated code
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4983 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--lib/sbin/create_fortran_stuff.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sbin/create_fortran_stuff.pl b/lib/sbin/create_fortran_stuff.pl
index 2fa3ab99..47578be7 100644
--- a/lib/sbin/create_fortran_stuff.pl
+++ b/lib/sbin/create_fortran_stuff.pl
@@ -183,7 +183,7 @@ sub CreateFortranCommonDeclaration
push(@data, $line);
- $sepchar = ',';
+ $sepchar = ', ';
}
push(@data, $definition);
@@ -202,7 +202,7 @@ sub get_fortran_type_string
$type eq 'STRING' ||
$type eq 'SENTENCE')
{
- $type_string = 'CCTK_STRING ';
+ $type_string = 'CCTK_STRING';
}
elsif($type eq 'BOOLEAN' ||
$type eq 'INT')
@@ -211,7 +211,7 @@ sub get_fortran_type_string
}
elsif($type eq 'REAL')
{
- $type_string = 'CCTK_REAL ';
+ $type_string = 'CCTK_REAL';
}
else
{