diff options
author | Damien George <damien.p.george@gmail.com> | 2015-04-09 15:29:54 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-04-09 15:29:54 +0000 |
commit | 4dea922610c8ea6af285cd49b0a531d4941d820f (patch) | |
tree | 9d10a279f23eb71d9ba9cd13e6da69b1ee77d03d /py/mpconfig.h | |
parent | df1637c580457234d805154efea1c51a83b1136a (diff) | |
download | micropython-4dea922610c8ea6af285cd49b0a531d4941d820f.tar.gz micropython-4dea922610c8ea6af285cd49b0a531d4941d820f.zip |
py: Adjust some spaces in code style/format, purely for consistency.
Diffstat (limited to 'py/mpconfig.h')
-rw-r--r-- | py/mpconfig.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h index 824ef76fe1..21ae0c3f53 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -695,7 +695,7 @@ typedef double mp_float_t; // must be somehow reachable for marking by the GC, since the native code // generators store pointers to GC managed memory in the code. #ifndef MP_PLAT_ALLOC_EXEC -#define MP_PLAT_ALLOC_EXEC(min_size, ptr, size) do { *ptr = m_new(byte, min_size); *size = min_size; } while(0) +#define MP_PLAT_ALLOC_EXEC(min_size, ptr, size) do { *ptr = m_new(byte, min_size); *size = min_size; } while (0) #endif #ifndef MP_PLAT_FREE_EXEC |