rt_hw_backtrace中多余括号删除. armclang给出警告

This commit is contained in:
liruncong 2018-09-10 19:58:28 +08:00
parent 95c36f32e2
commit 6d16685011
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ void rt_hw_backtrace(rt_uint32_t *fp, rt_uint32_t thread_entry)
if(func_entry <= 0x30000000) break;
if((func_entry == thread_entry))
if(func_entry == thread_entry)
{
rt_kprintf("EntryPoint:0x%x\n", func_entry);