diff options
author | Alan Modra <amodra@gmail.com> | 2022-05-10 22:57:13 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2022-05-13 14:32:54 +0930 |
commit | 845cbaa9ffbfd6a1f7976a6c7f3e4461e4d41993 (patch) | |
tree | cd44d6acbd57ee37cd21d7585d052f9737e04371 /sim/rl78 | |
parent | d112ec9673d92b43dfef868460b7361d5c6bb06c (diff) | |
download | binutils-845cbaa9ffbfd6a1f7976a6c7f3e4461e4d41993.zip binutils-845cbaa9ffbfd6a1f7976a6c7f3e4461e4d41993.tar.gz binutils-845cbaa9ffbfd6a1f7976a6c7f3e4461e4d41993.tar.bz2 |
sim: remove use of PTR
PTR will soon disappear from ansidecl.h. Remove uses in sim. Where
a PTR cast is used in assignment or function args to a void* I've
simply removed the unnecessary (in C) cast rather than replacing with
(void *).
Diffstat (limited to 'sim/rl78')
-rw-r--r-- | sim/rl78/trace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/rl78/trace.c b/sim/rl78/trace.c index a485c4c..669c2b5 100644 --- a/sim/rl78/trace.c +++ b/sim/rl78/trace.c @@ -78,7 +78,7 @@ remove_useless_symbols (asymbol ** symbols, long count) } static int -compare_symbols (const PTR ap, const PTR bp) +compare_symbols (const void *ap, const void *bp) { const asymbol *a = *(const asymbol **) ap; const asymbol *b = *(const asymbol **) bp; |