Module Name: src Committed By: kamil Date: Sat Aug 10 11:20:50 UTC 2019
Modified Files: src/sys/sys: event.h Log Message: Add fallback defintion for C++ of _EV_SET with the last argument of type 0 Converting 0 to intptr and void* is ambiguous according to a C++ compiler. New _EV_SET() accepts int type and casts it with static_cast<int>() to intptr_t. Reported and fix tested by <John D. Baker> To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 src/sys/sys/event.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.