aboutsummaryrefslogtreecommitdiff
path: root/packet.py
diff options
context:
space:
mode:
Diffstat (limited to 'packet.py')
-rw-r--r--packet.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet.py b/packet.py
index 414ed73..1291601 100644
--- a/packet.py
+++ b/packet.py
@@ -27,7 +27,7 @@ class CMD:
PCM = 5 # 16 samples, encoded S16_LE
def itos(i):
- return struct.pack('>L', i)
+ return struct.pack('>L', i).rstrip('\0')
def stoi(s):
- return struct.unpack('>L', s)[0]
+ return struct.unpack('>L', s.ljust(4, '\0'))[0]