diff options
Diffstat (limited to 'libgfortran/io/write.c')
-rw-r--r-- | libgfortran/io/write.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libgfortran/io/write.c b/libgfortran/io/write.c index 449b35f..c8811e2 100644 --- a/libgfortran/io/write.c +++ b/libgfortran/io/write.c @@ -1342,6 +1342,10 @@ write_integer (st_parameter_dt *dtp, const char *source, int kind) width = 20; break; + case 16: + width = 40; + break; + default: width = 0; break; |