diff options
author | wesolows <none@none> | 2006-03-30 16:06:07 -0800 |
---|---|---|
committer | wesolows <none@none> | 2006-03-30 16:06:07 -0800 |
commit | 80ab886d233f514d54c2a6bdeb9fdfd951bd6881 (patch) | |
tree | 0a7ee03b9e4951aa9aa2baa1d5479ac4bc92f070 /usr/src/lib/libdtrace_jni | |
parent | 52aacb450723e8271d37836e1b5861c2072a3981 (diff) | |
download | illumos-gate-80ab886d233f514d54c2a6bdeb9fdfd951bd6881.tar.gz |
6242262 ON should be buildable with gcc
6268345 fmd is insufficiently careful with alignment
6271070 gcc and cmd/fm don't get along
6272173 cpumem diag module writes to constant memory, crashing fmd
6273907 gcc and cmd/syseventd don't get along
6308057 gcc and sgs/dis don't get along on SPARC
6359863 the C preprocessor is still feeling abused by token pasting
6359868 gcc and cmd/stmsboot still don't get along
6359878 gcc and lib/smartcard don't get along on sparc
6361816 gcc and perl don't get along
6370832 kernel should agree on C99 mode for studio and gcc
6372728 gcc and sata don't get along
6390345 cw inserts garbage when used as a preprocessor
6397680 gcc and smbios are not getting along
6399113 meta_namespace.c uses worrisome construct and is not gcc friendly
6403999 cw is ugly and hairy and needs a man
Diffstat (limited to 'usr/src/lib/libdtrace_jni')
-rw-r--r-- | usr/src/lib/libdtrace_jni/common/dtj_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/lib/libdtrace_jni/common/dtj_util.c b/usr/src/lib/libdtrace_jni/common/dtj_util.c index 17463e0f0e..cb4578dc93 100644 --- a/usr/src/lib/libdtrace_jni/common/dtj_util.c +++ b/usr/src/lib/libdtrace_jni/common/dtj_util.c @@ -1186,8 +1186,8 @@ dtj_pointer_list_entry_cmp(const void *v1, const void *v2, void *arg) * It is not valid to compare pointers using the relational operators * unless they point to elements in the same array. */ - uint64_t x = (uint64_t)p1->dple_ptr; - uint64_t y = (uint64_t)p2->dple_ptr; + uint64_t x = (uintptr_t)p1->dple_ptr; + uint64_t y = (uintptr_t)p2->dple_ptr; int rc; rc = ((x > y) ? 1 : ((x < y) ? -1 : 0)); return (rc); |