Fixed warning/error about missing parenthesis (added during change for duet support).

This commit is contained in:
Joseph Lenox 2017-06-24 13:16:42 -05:00
parent aa20fb65e0
commit 13f121e3d9

View File

@ -1867,7 +1867,7 @@ sub send_gcode {
}else{
# slurp the file we would send into a string - should be someplace to reference this but could not find it?
local $/=undef;
open my $gch,$path;
open my ($gch,$path);
my $gcode=<$gch>;
close($gch);