misc: Fix compilation warnings

bsc_api.c:417:3: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘unsigned int’ [-Wformat]
bsc_api.c: In function ‘handle_ass_fail’:
bsc_api.c:458:3: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘unsigned int’ [-Wformat]

db.c: In function ‘db_sync_subscriber’:
db.c:785:3: warning: format ‘%i’ expects argument of type ‘int’, but argument 8 has type ‘time_t’ [-Wformat]

osmo_msc.c: In function ‘msc_release_connection’:
osmo_msc.c:145:20: warning: unused variable ‘trans’ [-Wunused-variable]

smpp_smsc.c: In function ‘link_accept_cb’:
smpp_smsc.c:891:24: warning: assignment from incompatible pointer type [enabled by default]

smpp_smsc.c:271:1: warning: ‘esme_by_system_id’ defined but not used [-Wunused-function]

smpp_openbsc.c: In function ‘smpp_openbsc_init’:
smpp_openbsc.c:545:2: warning: implicit declaration of function ‘smpp_vty_init’ [-Wimplicit-function-declaration]

osmo_bsc_ctrl.c: In function ‘verify_bts_loc’:
osmo_bsc_ctrl.c:340:19: warning: variable ‘height’ set but not used [-Wunused-but-set-variable

smpp_mirror.c: In function ‘main’:
smpp_mirror.c:297:2: warning: implicit declaration of function ‘osmo_init_logging’ [-Wimplicit-function-declaration]
This commit is contained in:
Holger Hans Peter Freyther 2013-07-27 18:39:30 +02:00
parent 649e1ff4b3
commit 5ecbc93656
7 changed files with 11 additions and 20 deletions

View File

@ -414,7 +414,7 @@ static void handle_ass_compl(struct gsm_subscriber_connection *conn,
gh = msgb_l3(msg);
if (msgb_l3len(msg) - sizeof(*gh) != 1) {
LOGP(DMSC, LOGL_ERROR, "Assignment Compl invalid: %lu\n",
LOGP(DMSC, LOGL_ERROR, "Assignment Compl invalid: %u\n",
msgb_l3len(msg) - sizeof(*gh));
return;
}
@ -455,7 +455,7 @@ static void handle_ass_fail(struct gsm_subscriber_connection *conn,
gh = msgb_l3(msg);
if (msgb_l3len(msg) - sizeof(*gh) != 1) {
LOGP(DMSC, LOGL_ERROR, "assignemnt failure unhandled: %lu\n",
LOGP(DMSC, LOGL_ERROR, "assignemnt failure unhandled: %u\n",
msgb_l3len(msg) - sizeof(*gh));
rr_failure = NULL;
} else {

View File

@ -781,7 +781,7 @@ int db_sync_subscriber(struct gsm_subscriber *subscriber)
subscriber->authorized,
q_tmsi,
subscriber->lac,
subscriber->expire_lu,
(int) subscriber->expire_lu,
subscriber->imsi);
free(q_tmsi);

View File

@ -142,8 +142,6 @@ struct bsc_api *msc_bsc_api() {
/* lchan release handling */
void msc_release_connection(struct gsm_subscriber_connection *conn)
{
struct gsm_trans *trans;
/* skip when we are in release, e.g. due an error */
if (conn->in_release)
return;

View File

@ -267,18 +267,6 @@ void smpp_esme_put(struct osmo_esme *esme)
esme_destroy(esme);
}
static struct osmo_esme *
esme_by_system_id(const struct smsc *smsc, char *system_id)
{
struct osmo_esme *e;
llist_for_each_entry(e, &smsc->esme_list, list) {
if (!strcmp(e->system_id, system_id))
return e;
}
return NULL;
}
/*! \brief try to find a SMPP route (ESME) for given destination */
struct osmo_esme *
smpp_route(const struct smsc *smsc, const struct osmo_smpp_addr *dest)
@ -845,7 +833,7 @@ dead_socket:
}
/* call-back of write queue once it wishes to write a message to the socket */
static void esme_link_write_cb(struct osmo_fd *ofd, struct msgb *msg)
static int esme_link_write_cb(struct osmo_fd *ofd, struct msgb *msg)
{
struct osmo_esme *esme = ofd->data;
int rc;
@ -858,8 +846,10 @@ static void esme_link_write_cb(struct osmo_fd *ofd, struct msgb *msg)
smpp_esme_put(esme);
} else if (rc < msgb_length(msg)) {
LOGP(DSMPP, LOGL_ERROR, "[%s] Short write\n", esme->system_id);
return;
return -1;
}
return 0;
}
/* callback for already-accepted new TCP socket */

View File

@ -124,4 +124,6 @@ int smpp_route_pfx_add(struct osmo_smpp_acl *acl,
const struct osmo_smpp_addr *pfx);
int smpp_route_pfx_del(struct osmo_smpp_acl *acl,
const struct osmo_smpp_addr *pfx);
int smpp_vty_init(void);
#endif

View File

@ -337,7 +337,7 @@ static int verify_bts_loc(struct ctrl_cmd *cmd, const char *value, void *data)
char *saveptr, *latstr, *lonstr, *heightstr, *tstampstr, *validstr, *tmp;
time_t tstamp;
int valid;
double lat, lon, height;
double lat, lon, height __attribute__((unused));
tmp = talloc_strdup(cmd, value);
if (!tmp)

View File

@ -10,6 +10,7 @@
#include <smpp34_structs.h>
#include <smpp34_params.h>
#include <osmocom/core/application.h>
#include <osmocom/core/utils.h>
#include <osmocom/core/msgb.h>
#include <osmocom/core/talloc.h>