fix various compiler warnings (on FreeBSD-11.0)

FreeBSD 11.0 uses clang version 3.8.0 which spits various warnings
during libosmocore compilation.  Let's clean this up a bit.

Change-Id: Ic14572e6970bd0b8916604fabf807f1608fa07e5
This commit is contained in:
Harald Welte 2017-02-08 15:46:53 +00:00
parent 6b986c2422
commit f12d40f4df
4 changed files with 6 additions and 5 deletions

View File

@ -131,7 +131,7 @@ int ctrl_cmd_send_trap(struct ctrl_handle *ctrl, const char *name, char *value)
return -ENOMEM;
cmd->id = "0"; /* It's a TRAP! */
cmd->variable = name;
cmd->variable = (char *) name;
cmd->reply = value;
r = ctrl_cmd_send_to_all(ctrl, cmd);
talloc_free(cmd);

View File

@ -571,7 +571,7 @@ struct msgb *abis_nm_fail_evt_vrep(enum abis_nm_event_type t,
return NULL;
}
if (len)
msgb_tl16v_put(nmsg, NM_ATT_ADD_TEXT, len, add_text);
msgb_tl16v_put(nmsg, NM_ATT_ADD_TEXT, len, (const uint8_t *) add_text);
return nmsg;
}

View File

@ -28,6 +28,7 @@
#include <arpa/inet.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <osmocom/core/msgb.h>
#include <osmocom/core/talloc.h>

View File

@ -37,7 +37,7 @@ static struct msgb *_select_file(struct osim_chan_hdl *st, uint8_t p1, uint8_t p
const uint8_t *data, uint8_t data_len)
{
struct msgb *msg, *resp;
char *dst;
uint8_t *dst;
msg = osim_new_apdumsg(0x00, 0xA4, p1, p2, data_len, 256);
dst = msgb_put(msg, data_len);
@ -65,7 +65,7 @@ static struct msgb *select_file(struct osim_chan_hdl *st, uint16_t fid)
}
/* 11.1.9 */
static int verify_pin(struct osim_chan_hdl *st, uint8_t pin_nr, uint8_t *pin)
static int verify_pin(struct osim_chan_hdl *st, uint8_t pin_nr, char *pin)
{
struct msgb *msg;
char *pindst;
@ -75,7 +75,7 @@ static int verify_pin(struct osim_chan_hdl *st, uint8_t pin_nr, uint8_t *pin)
return -EINVAL;
msg = osim_new_apdumsg(0x00, 0x20, 0x00, pin_nr, 8, 0);
pindst = msgb_put(msg, 8);
pindst = (char *) msgb_put(msg, 8);
memset(pindst, 0xFF, 8);
strncpy(pindst, pin, strlen(pin));