diff options
author | Damien George <damien.p.george@gmail.com> | 2015-04-04 15:53:11 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-04-04 15:53:11 +0100 |
commit | 2801e6fad8b8b3ecdd9c8bc58f9515ff66eca46c (patch) | |
tree | f49a2102931919c96bcde3f1bfa16b0ec8b2e27d /py/pfenv.c | |
parent | 7f59b4b2ca28179c72aa12f35fe59cb14017b5b0 (diff) | |
download | micropython-2801e6fad8b8b3ecdd9c8bc58f9515ff66eca46c.tar.gz micropython-2801e6fad8b8b3ecdd9c8bc58f9515ff66eca46c.zip |
py: Some trivial cosmetic changes, for code style consistency.
Diffstat (limited to 'py/pfenv.c')
-rw-r--r-- | py/pfenv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/pfenv.c b/py/pfenv.c index 22274a2ad7..f0a894e49b 100644 --- a/py/pfenv.c +++ b/py/pfenv.c @@ -41,7 +41,7 @@ static const char pad_spaces[] = " "; static const char pad_zeroes[] = "0000000000000000"; -void pfenv_vstr_add_strn(void *data, const char *str, mp_uint_t len){ +void pfenv_vstr_add_strn(void *data, const char *str, mp_uint_t len) { vstr_add_strn(data, str, len); } |