From 1a7b123519a3b192e1598a3a2f47ea831ef4b3da Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Wed, 26 Sep 2018 06:53:46 -0700 Subject: [PATCH] increase size --- src/comm/comm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comm/comm.go b/src/comm/comm.go index d3073be..d790f7d 100644 --- a/src/comm/comm.go +++ b/src/comm/comm.go @@ -33,7 +33,7 @@ func (c Comm) Close() { } func (c Comm) Write(b []byte) (int, error) { - c.connection.Write([]byte(fmt.Sprintf("%0.7d", len(b)))) + c.connection.Write([]byte(fmt.Sprintf("%0.8d", len(b)))) n, err := c.connection.Write(b) if n != len(b) { err = fmt.Errorf("wanted to write %d but wrote %d", n, len(b))