summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
{