mirror of
https://github.com/darlinghq/darling-libkqueue.git
synced 2024-11-26 21:20:38 +00:00
Fix a build failure on mips64el
This commit is contained in:
parent
c15355a4cf
commit
f14c4b8fc0
@ -1,3 +1,9 @@
|
||||
UNRELEASED HEAD
|
||||
------------------------------------------------------------------------
|
||||
|
||||
* Fix a build failure on mips64el.
|
||||
(Credit: YunQiang Su, from Debian Bug #754376)
|
||||
|
||||
2014-03-09 v2.0.3
|
||||
------------------------------------------------------------------------
|
||||
|
||||
|
@ -120,7 +120,7 @@ knote_lookup(struct filter *filt, uintptr_t ident)
|
||||
ent = RB_FIND(knt, &filt->kf_knote, &query);
|
||||
pthread_rwlock_unlock(&filt->kf_knote_mtx);
|
||||
|
||||
#ifdef __x86_64__
|
||||
#if defined(__x86_64__) || defined(__mips64)
|
||||
dbg_printf("id=%lu ent=%p", ident, ent);
|
||||
#else
|
||||
dbg_printf("id=%u ent=%p", ident, ent);
|
||||
|
Loading…
Reference in New Issue
Block a user