diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-05-15 10:48:02 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-05-15 11:00:00 -0400 |
commit | be2bc30f9cb3e8dd8b566db551a8ce3cc305e015 (patch) | |
tree | b956da9b71b744d3600ee4a1a7817c4f92f3c2ba /sim/ppc/tree.c | |
parent | c5a2e0123b7241be6a2022f1acb8fa700dda628a (diff) | |
download | fsf-binutils-gdb-be2bc30f9cb3e8dd8b566db551a8ce3cc305e015.zip fsf-binutils-gdb-be2bc30f9cb3e8dd8b566db551a8ce3cc305e015.tar.gz fsf-binutils-gdb-be2bc30f9cb3e8dd8b566db551a8ce3cc305e015.tar.bz2 |
sim: ppc: clean up various warnings
A random grab bag of minor fixes to enable -Werror for this port.
Cast address vars to long when the format was using %l.
Use %zu with sizeof operations.
Add const to a bunch of strings.
Trim unused variables.
Fix sizeof call to calculate target storage and not the pointer itself.
Diffstat (limited to 'sim/ppc/tree.c')
-rw-r--r-- | sim/ppc/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/ppc/tree.c b/sim/ppc/tree.c index a0e0820..5c35d32 100644 --- a/sim/ppc/tree.c +++ b/sim/ppc/tree.c @@ -528,7 +528,7 @@ parse_reg_property(device *current, if (device_nr_size_cells(bus) > 0) chp = parse_size(current, bus, chp, ®s[reg_nr].size); else - memset(®s[reg_nr].size, 0, sizeof (®s[reg_nr].size)); + memset(®s[reg_nr].size, 0, sizeof (regs[reg_nr].size)); } /* create it */ |