Skip to content

Commit 3c3f1df

Browse files
committed
[libcpu][arm] fix: delete extra space at the end of line
1 parent d074a7e commit 3c3f1df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcpu/arm/cortex-a/stack.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ rt_uint8_t *rt_hw_stack_init(void *tentry, void *parameter,
8282
*(--stk) = 0x00000000;
8383

8484
/* 4. FPEXC: EN=1 */
85-
*(--stk) = 0x40000000;
85+
*(--stk) = 0x40000000;
8686
#endif
8787

8888
/* return task's current stack address */

0 commit comments

Comments
 (0)