Browse Source

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.
tags/v0.6.0-rc1
Drasko DRASKOVIC 12 years ago
committed by Øyvind Harboe
parent
commit
800bc9308d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/target/mips_m4k.h

+ 1
- 1
src/target/mips_m4k.h View File

@@ -31,7 +31,7 @@ struct target;


struct mips_m4k_common struct mips_m4k_common
{ {
int common_magic;
uint32_t common_magic;
bool is_pic32mx; bool is_pic32mx;
struct mips32_common mips32; struct mips32_common mips32;
}; };


Loading…
Cancel
Save