Remove trailing WS

This commit is contained in:
Aki Niemi 2009-09-14 13:00:45 +03:00
parent 4904479214
commit cfd40b2313
2 changed files with 3 additions and 3 deletions

View File

@ -1125,7 +1125,7 @@ static bool version_resp_cb(GIsiClient *client, const void *restrict data,
const unsigned char *msg = data;
struct ofono_netreg *netreg = opaque;
struct netreg_data *nd = ofono_netreg_get_data(netreg);
if(!msg) {
DBG("ISI client error: %d", g_isi_client_error(client));
return true;

View File

@ -62,7 +62,7 @@ enum sub_block_id {
SMS_GSM_STATUS_REPORT = 0x01,
SMS_GSM_SUBMIT = 0x02,
SMS_GSM_COMMAND = 0x03,
SMS_GSM_ROUTING = 0x0D
SMS_GSM_ROUTING = 0x0D
};
enum routing_command {
@ -135,7 +135,7 @@ static void isi_submit(struct ofono_sms *sms, unsigned char *pdu,
ofono_sms_submit_cb_t cb, void *data)
{
DBG("Not implemented.");
CALLBACK_WITH_FAILURE(cb, -1, data);
CALLBACK_WITH_FAILURE(cb, -1, data);
}
static void routing_ntf_cb(GIsiClient *client, const void *restrict data,