Merge pull request #1791 from liruncong/rt_hw_backtrace

rt_hw_backtrace中多余括号删除. armclang给出警告
This commit is contained in:
Bernard Xiong 2018-09-10 21:29:54 +08:00 committed by GitHub
commit f9a61768c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);