Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJozef Lawrynowicz <jozef.l@mittosystems.com>2020-09-02 18:16:55 +0300
committerCorinna Vinschen <corinna@vinschen.de>2020-09-03 13:55:32 +0300
commitd72ea86d41e1295839de8cd9564bb8b44a8d862a (patch)
tree730ff79929b92265f261cbfb112c02a514d9a7b8 /libgloss/msp430
parent754386c7f558a686420d4646c101706d9020f5d3 (diff)
MSP430: Fix message in sbrk.c printing binary character
The call to write() in sbrk.c was using the wrong value for the length argument, causing the NUL terminating character of the string to be printed.
Diffstat (limited to 'libgloss/msp430')
-rw-r--r--libgloss/msp430/sbrk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgloss/msp430/sbrk.c b/libgloss/msp430/sbrk.c
index bbc3fb5ba..8e4339f6e 100644
--- a/libgloss/msp430/sbrk.c
+++ b/libgloss/msp430/sbrk.c
@@ -24,8 +24,8 @@ _sbrk (int adj)
if (heap + adj > sp)
{
-#define MESSAGE "Heap and stack collision\n"
- write (1, MESSAGE, sizeof MESSAGE);
+ const char * const msg = "Heap and stack collision\n";
+ write (1, msg, sizeof (msg) - 1);
abort ();
}