summaryrefslogtreecommitdiffstatshomepage
path: root/unix/file.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-19 11:50:14 +0000
committerDamien George <damien.p.george@gmail.com>2014-01-19 11:50:14 +0000
commit49f6a99c65943c6b040e7237f7b86cbe184826c0 (patch)
treeb544c90cde456ba16e2e59bcfa3fd5207b7beddb /unix/file.c
parentcbd2f7482c8bf457cc17da763859dbba6e03e2a2 (diff)
parent50a2d6ff5902a92b4380da934d5a59b1085e9ece (diff)
downloadmicropython-49f6a99c65943c6b040e7237f7b86cbe184826c0.tar.gz
micropython-49f6a99c65943c6b040e7237f7b86cbe184826c0.zip
Merge branch 'master' of github.com:micropython/micropython
Diffstat (limited to 'unix/file.c')
-rw-r--r--unix/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/file.c b/unix/file.c
index 9b8c822520..af75944711 100644
--- a/unix/file.c
+++ b/unix/file.c
@@ -112,7 +112,7 @@ static const mp_obj_type_t rawfile_type = {
};
// Factory function for I/O stream classes
-mp_obj_t mp_builtin_open(uint n_args, uint n_kw, const mp_obj_t *args) {
+mp_obj_t mp_builtin_open(uint n_args, const mp_obj_t *args) {
// TODO: analyze mode and buffering args and instantiate appropriate type
return fdfile_make_new((mp_obj_t)&rawfile_type, n_args, 0, args);
}