remove debugging printf in sysinfo code

This commit is contained in:
Harald Welte 2011-06-29 13:25:26 +02:00
parent 5830bfe411
commit 24f22dff1e
1 changed files with 0 additions and 1 deletions

View File

@ -58,7 +58,6 @@ uint8_t *lchan_sacch_get(struct gsm_lchan *lchan, struct gsm_time *g_time)
for (tmp = lchan->si.last + 1; tmp != lchan->si.last; tmp = (tmp + 1) % 32) {
if (lchan->si.valid & (1 << tmp)) {
lchan->si.last = tmp;
printf("returning SACCH SI type %u\n", tmp);
return lchan->si.buf[tmp];
}
}