[BACK]Return to midi.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / sndiod

Diff for /src/usr.bin/sndiod/midi.c between version 1.17 and 1.18

version 1.17, 2019/03/28 11:18:56 version 1.18, 2019/05/10 04:40:16
Line 308 
Line 308 
                         iep->idx = 0;                          iep->idx = 0;
                 } else if (c >= 0xf0) {                  } else if (c >= 0xf0) {
                         iep->msg[0] = c;                          iep->msg[0] = c;
                         iep->len = common_len[c & 7];                          iep->len = common_len[c >> 5];
                           log_puti(iep->len);
                         iep->st = c;                          iep->st = c;
                         iep->idx = 1;                          iep->idx = 1;
                 } else if (c >= 0x80) {                  } else if (c >= 0x80) {

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18