mirror of
https://github.com/linux-msm/openocd.git
synced 2026-02-25 13:15:07 -08:00
mips_m4k: common_magic should be unsigned
For all architectures we use distinct common magic number, and this should be a uint32_t type. Otherwise, comparison with macros will yield compilation warning.
This commit is contained in:
committed by
Øyvind Harboe
parent
e1466df54d
commit
800bc9308d
@@ -31,7 +31,7 @@ struct target;
|
||||
|
||||
struct mips_m4k_common
|
||||
{
|
||||
int common_magic;
|
||||
uint32_t common_magic;
|
||||
bool is_pic32mx;
|
||||
struct mips32_common mips32;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user