Converted u8_t to uint8_t and u16_t to uint16_t in the rest of core (specifically ctk/vnc, slip and the loader code)
This commit is contained in:
parent
d44396f883
commit
372de7d08a
9 changed files with 149 additions and 149 deletions
|
@ -305,7 +305,7 @@ elfloader_arch_relocate(int fd, unsigned int sectionoffset,
|
|||
*/
|
||||
|
||||
/* new solution */
|
||||
instr[2] = (u8_t) ((int)addr) & 0xff;
|
||||
instr[2] = (uint8_t) ((int)addr) & 0xff;
|
||||
instr[3] = ((int)addr) >> 8;
|
||||
cfs_write(fd, instr, 4);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue