kernel: mem_domain: remove extra slash in Z_PROGBITS_SYM
The macro Z_PROGBITS_SYM has "\%" but this is not correct usage to escape "%". So remove the extra slash. Note that this macro is used directly to generate assembly code so it cannot be "%%" as in escaping "%" in printf(). Fixes #40439 Signed-off-by: Daniel Leung <daniel.leung@intel.com>
This commit is contained in:
parent
7bfd0976aa
commit
d387c863bb
@ -81,7 +81,7 @@ struct z_app_region {
|
||||
/* ARM has a quirk in that '@' denotes a comment, so we have to send
|
||||
* %progbits to the assembler instead.
|
||||
*/
|
||||
#define Z_PROGBITS_SYM "\%"
|
||||
#define Z_PROGBITS_SYM "%"
|
||||
#else
|
||||
#define Z_PROGBITS_SYM "@"
|
||||
#endif
|
||||
|
||||
Loading…
Reference in New Issue
Block a user