mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-02 06:10:40 +08:00
Fixed warning/error about missing parenthesis (added during change for duet support).
This commit is contained in:
parent
aa20fb65e0
commit
13f121e3d9
@ -1867,7 +1867,7 @@ sub send_gcode {
|
|||||||
}else{
|
}else{
|
||||||
# slurp the file we would send into a string - should be someplace to reference this but could not find it?
|
# slurp the file we would send into a string - should be someplace to reference this but could not find it?
|
||||||
local $/=undef;
|
local $/=undef;
|
||||||
open my $gch,$path;
|
open my ($gch,$path);
|
||||||
my $gcode=<$gch>;
|
my $gcode=<$gch>;
|
||||||
close($gch);
|
close($gch);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user