Skip to content
Snippets Groups Projects
Commit aa9b78cd authored by Gerhard Gonter's avatar Gerhard Gonter :speech_balloon:
Browse files

syswrite complains about :utf8 layer

parent 59b57340
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ sub write_json_file ...@@ -57,7 +57,7 @@ sub write_json_file
=begin comment =begin comment
open (J, '>:utf8', $json_fnm) or die ("can not write to [$json_fnm]; caller:", join (' ', caller())); open (J, '>:', $json_fnm) or die ("can not write to [$json_fnm]; caller:", join (' ', caller()));
syswrite (J, $json_str); syswrite (J, $json_str);
close (J); close (J);
...@@ -97,7 +97,7 @@ sub x_write_text ...@@ -97,7 +97,7 @@ sub x_write_text
my $json_fnm= shift; my $json_fnm= shift;
my $json_str= shift; my $json_str= shift;
open (J, '>:utf8', $json_fnm) or die ("can not write to [$json_fnm]"); open (J, '>:', $json_fnm) or die ("can not write to [$json_fnm]");
syswrite (J, $json_str); syswrite (J, $json_str);
close (J); close (J);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment