From 551b3c37412bff663d9e99816f61a40bc1d40ee8 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 20 Dec 2013 21:54:50 -0800 Subject: [PATCH] packer/rpc: missing format for muxconn --- packer/rpc/muxconn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packer/rpc/muxconn.go b/packer/rpc/muxconn.go index 847e99329..5c865b944 100644 --- a/packer/rpc/muxconn.go +++ b/packer/rpc/muxconn.go @@ -152,7 +152,7 @@ func (m *MuxConn) Dial(id uint32) (io.ReadWriteCloser, error) { if stream, ok := m.streamsDial[id]; ok { m.muDial.Unlock() return nil, fmt.Errorf( - "Stream %d already open for dial. State: %d", stream.state) + "Stream %d already open for dial. State: %d", id, stream.state) } // Create the new stream and put it in our list. We can then