From 9ff9e3c2b0543d173cc20dbc0aa29d6819c113de Mon Sep 17 00:00:00 2001 From: Sven Robertz <sven@cs.lth.se> Date: Fri, 22 Feb 2013 15:54:29 +0100 Subject: [PATCH] small c# fix --- lib/csharp/se/lth/control/labcomm/LabCommDecoderChannel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/csharp/se/lth/control/labcomm/LabCommDecoderChannel.cs b/lib/csharp/se/lth/control/labcomm/LabCommDecoderChannel.cs index ca4d6bc..08b365c 100644 --- a/lib/csharp/se/lth/control/labcomm/LabCommDecoderChannel.cs +++ b/lib/csharp/se/lth/control/labcomm/LabCommDecoderChannel.cs @@ -56,7 +56,7 @@ namespace se.lth.control.labcomm { private void collectFlatSignature(LabCommEncoder e) { int type = decodePacked32(); - e.encodeInt(type); + e.encodePacked32(type); switch (type) { case LabComm.ARRAY: { int dimensions = decodePacked32(); -- GitLab