summaryrefslogtreecommitdiffstatshomepage
path: root/unix
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-02-08 18:17:23 +0000
committerDamien George <damien.p.george@gmail.com>2014-02-08 18:17:23 +0000
commit698ec21e46564ff0c2c71bf11d7eb4ef349c88d9 (patch)
tree3d0eac21ec784f970f9f5586dfbd28c66f0774e5 /unix
parent23177088d255bec6c0bf93470aeac77194aa8258 (diff)
downloadmicropython-698ec21e46564ff0c2c71bf11d7eb4ef349c88d9.tar.gz
micropython-698ec21e46564ff0c2c71bf11d7eb4ef349c88d9.zip
Make mp_obj_str_get_data return char* instead of byte*.
Can't decide which is better for string type, char or byte pointer. Changing to char removes a few casts. Really need to do proper unicode.
Diffstat (limited to 'unix')
-rw-r--r--unix/socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/socket.c b/unix/socket.c
index 6f7954522b..28749f3bef 100644
--- a/unix/socket.c
+++ b/unix/socket.c
@@ -154,7 +154,7 @@ static mp_obj_t socket_send(uint n_args, const mp_obj_t *args) {
}
uint sz;
- const byte *buf = mp_obj_str_get_data(args[1], &sz);
+ const char *buf = mp_obj_str_get_data(args[1], &sz);
int out_sz = send(self->fd, buf, sz, flags);
RAISE_ERRNO(out_sz, errno);