forked from Lainports/freebsd-ports
- Add license
- Put manpages in ${PREFIX}/share
- Pet portlint, portclippy, portfmt and Q/A check
Add minimal support to `pkg-config imlib2`; imlib2-config has been
dropped since imlib2-1.7.5.
PR: 276427
11 lines
395 B
C++
11 lines
395 B
C++
--- event.hpp.orig 2004-12-06 02:57:32 UTC
|
|
+++ event.hpp
|
|
@@ -74,7 +74,7 @@ class EventManager { (public)
|
|
list<Event *>::iterator k;
|
|
for (k = events.begin(); k != events.end(); ++k) {
|
|
Event *e = *k;
|
|
- printf(":: Event %d 0x%x\n", e->type, (unsigned int)(e->function));
|
|
+ printf(":: Event %d %p\n", e->type, e->function);
|
|
}
|
|
}
|
|
|