Fixed a compiler warning on 32bit linux introduced while streamlining the variables

git-svn-id: svn://svn.code.sf.net/p/libkqueue/code/trunk@526 fb4e3144-bc1c-4b72-a658-5bcd248dd7f7
This commit is contained in:
marius 2011-06-21 17:50:07 +00:00
parent 9994502c20
commit 6df0650bc4

View File

@ -133,7 +133,11 @@ knote_lookup(struct filter *filt, uintptr_t ident)
knote_lock(ent);
pthread_rwlock_unlock(&filt->kf_knote_mtx);
#ifdef __x86_64__
dbg_printf("id=%lu ent=%p", ident, ent);
#else
dbg_printf("id=%u ent=%p", ident, ent);
#endif
return (ent);
}