summaryrefslogtreecommitdiffstats
path: root/src/host/osmocon/osmoload.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-03-22 08:26:04 +0800
committerHarald Welte <laforge@gnumonks.org>2010-03-22 08:26:04 +0800
commitc1cee898dfa33a81a585abb2ffb36fa026552fc3 (patch)
tree463ea9eb8888f196a7f0015f6fe3c10c801aff24 /src/host/osmocon/osmoload.c
parentfbacd40930f557df20c9e52414bd2ebfc279084a (diff)
misc compiler warning fixes
* added missing param in call to gsm48_rx_bcch * added 'extern' to declarations of rsl_rlm_cause_strs and target_board * added several 'const' for strings * removed useless 'bufptr,' from hexdump (From: itsme <itsme@xs4all.nl>)
Diffstat (limited to 'src/host/osmocon/osmoload.c')
-rw-r--r--src/host/osmocon/osmoload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/osmocon/osmoload.c b/src/host/osmocon/osmoload.c
index 2ee01249..ecee8b36 100644
--- a/src/host/osmocon/osmoload.c
+++ b/src/host/osmocon/osmoload.c
@@ -39,7 +39,7 @@ static void hexdump(const uint8_t *data, unsigned int len)
const uint8_t *bufptr = data;
int n;
- for (n=0; bufptr, n < len; n++, bufptr++)
+ for (n=0; n < len; n++, bufptr++)
printf("%02x ", *bufptr);
printf("\n");
}