CVSROOT: /cvs
Module name: ports
Changes by: [email protected] 2023/01/28 17:07:55
Modified files:
x11/xpostit : Makefile
Added files:
x11/xpostit/patches: patch-menu_c patch-note_c patch-util_c
patch-xpostit_h
Log message:
x11/xpostit: explicitly cast integer to pointer to fix build with clang 15
The callback takes a pointer to be able to pass arbitrary data, but
instead of allocating an int and passing a pointer to it, the code
jams the int directly into the pointer for an int -> pointer -> int
roundtrip. Problem reported by and discussed with jca@.
Fix implicit function declarations.