aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-06-29 13:25:26 +0200
committerHarald Welte <laforge@gnumonks.org>2011-06-29 13:25:26 +0200
commit24f22dff1e286e5eebae02bf2971f5878df3659c (patch)
treed929b889c32f1b49f99b0e46b88e42f525b17d66
parent5830bfe4111cac270db64b566dd0f615b8c17552 (diff)
remove debugging printf in sysinfo code
-rw-r--r--src/common/sysinfo.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/common/sysinfo.c b/src/common/sysinfo.c
index 90141d5..44da970 100644
--- a/src/common/sysinfo.c
+++ b/src/common/sysinfo.c
@@ -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];
}
}