summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/bsplibc.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/shared/bsplibc.c')
-rw-r--r--c/src/lib/libbsp/shared/bsplibc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/lib/libbsp/shared/bsplibc.c b/c/src/lib/libbsp/shared/bsplibc.c
index c8910c64ee..43cd745312 100644
--- a/c/src/lib/libbsp/shared/bsplibc.c
+++ b/c/src/lib/libbsp/shared/bsplibc.c
@@ -17,7 +17,7 @@ void bsp_libc_init(
int use_sbrk
)
{
- RTEMS_Malloc_Initialize( heap_start, heap_size, use_sbrk);
+ RTEMS_Malloc_Initialize( heap_start, heap_size, use_sbrk );
/*
* Init the RTEMS libio facility to provide UNIX-like system
@@ -31,7 +31,7 @@ void bsp_libc_init(
* Set up for the libc handling.
*/
- if (BSP_Configuration.ticks_per_timeslice > 0)
+ if ( BSP_Configuration.ticks_per_timeslice > 0 )
libc_init(1); /* reentrant if possible */
else
libc_init(0); /* non-reentrant */