From: Pekka Pessi <Pekka.Pessi(a)nokia.com>
---
drivers/isimodem/ussd.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/isimodem/ussd.c b/drivers/isimodem/ussd.c
index 19ba30e..2f4091c 100644
--- a/drivers/isimodem/ussd.c
+++ b/drivers/isimodem/ussd.c
@@ -119,7 +119,7 @@ error:
}
static GIsiRequest *ussd_send(GIsiClient *client,
- int dcs, uint8_t *str, size_t len,
+ int dcs, uint8_t const *str, size_t len,
void *data, GDestroyNotify notify)
{
const uint8_t msg[] = {
@@ -135,7 +135,7 @@ static GIsiRequest *ussd_send(GIsiClient *client,
const struct iovec iov[2] = {
{ (uint8_t *)msg, sizeof(msg) },
- { str, len }
+ { (uint8_t *)str, len }
};
return g_isi_vsend(client, iov, 2, SS_TIMEOUT,
@@ -152,7 +152,7 @@ static void isi_request(struct ofono_ussd *ussd, int dcs,
if (!cbd)
goto error;
- if (ussd_send(ud->client, dcs, (guint8 *) pdu, len, cbd, g_free))
+ if (ussd_send(ud->client, dcs, pdu, len, cbd, g_free))
return;
error:
--
1.7.0.4
Show replies by thread
Hi Pekka,
On 09/16/2010 08:50 AM, Pekka.Pessi(a)nokia.com wrote:
From: Pekka Pessi <Pekka.Pessi(a)nokia.com>
---
drivers/isimodem/ussd.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Patch has been applied, thanks.
Regards,
-Denis