Fix a build failure on mips64el

This commit is contained in:
Mark Heily 2014-07-24 21:45:40 -04:00
parent c15355a4cf
commit f14c4b8fc0
2 changed files with 7 additions and 1 deletions

View File

@ -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
------------------------------------------------------------------------

View File

@ -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);