Skip to content

Commit b8043f4

Browse files
committed
Build fix for mbedk64f target
JerryScript-DCO-1.0-Signed-off-by: Robert Sipka [email protected]
1 parent c0f3a9f commit b8043f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jerry-core/jerry-port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@ int jerry_port_errormsg (const char *format, /**< format string */
5050
*/
5151
int jerry_port_putchar (int c) /**< character to put */
5252
{
53-
return putchar (c);
53+
return putchar ((unsigned char) c);
5454
} /* jerry_port_putchar */

0 commit comments

Comments
 (0)