Skip to content

Commit 32dd60f

Browse files
committed
Daemon - fix typo
1 parent 30fbf21 commit 32dd60f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/server/ruby/bin/daemon.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ def initialize(ports)
552552
recv_osc = lambda do
553553
size_str = client.recvfrom(4, Socket::MSG_WAITALL)[0].chomp
554554
size = size_str.unpack('N')[0]
555-
raise "Critical Error: Bad TCP OSC size received from Tau #{size_satr.inspect}" unless size
555+
raise "Critical Error: Bad TCP OSC size received from Tau #{size_str.inspect}" unless size
556556
data_raw = client.recvfrom(size, Socket::MSG_WAITALL)[0].chomp
557557
osc_decoder.decode_single_message(data_raw)
558558
end

0 commit comments

Comments
 (0)