Stefan Schuermans commited on 2018-08-14 13:51:04
Showing 1 changed files, with 1 additions and 1 deletions.
... | ... |
@@ -276,7 +276,7 @@ bool Distri::on_packet(Glib::IOCondition condition) |
276 | 276 |
ssize_t sz = recv(m_sock, buffer, sizeof(buffer), 0); |
277 | 277 |
// success and long enough for header |
278 | 278 |
if (sz >= 12) { |
279 |
- // check magic, 3 channels and maxvall 0xFF |
|
279 |
+ // check magic, 3 channels and maxval 0xFF |
|
280 | 280 |
if (buffer[ 0] == 0x23 && buffer[ 1] == 0x54 && |
281 | 281 |
buffer[ 2] == 0x26 && buffer[ 3] == 0x66 && |
282 | 282 |
buffer[ 8] == 0x00 && buffer[ 9] == 0x03 && |
283 | 283 |