Skip to content
Snippets Groups Projects
Commit 2b8ab3e1 authored by rswindell's avatar rswindell
Browse files

Bug-fix: writeln() would segfault if passed a number.

parent 96b5935d
Branches
Tags
No related merge requests found
...@@ -85,7 +85,7 @@ function write(str) ...@@ -85,7 +85,7 @@ function write(str)
function writeln(str) function writeln(str)
{ {
if(debug) if(debug)
log(format("rsp: %s",str)); log("rsp: " + str);
write(str + "\r\n"); write(str + "\r\n");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment