Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build on 32-bit architectures #124

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions libXg/gwin.c
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ Mouseaction(Widget w, XEvent *e, String *p, Cardinal *np)

static void
SelCallback(Widget w, XtPointer cldata, Atom *sel, Atom *seltype,
XtPointer val, uint64_t *len, int *fmt)
XtPointer val, unsigned long *len, int *fmt)
{
GwinWidget gw = (GwinWidget)w;
XTextProperty p = {0};
Expand Down Expand Up @@ -486,7 +486,7 @@ SelCallback(Widget w, XtPointer cldata, Atom *sel, Atom *seltype,

static Boolean
SendSel(Widget w, Atom *sel, Atom *target, Atom *rtype, XtPointer *ans,
uint64_t *anslen, int *ansfmt)
unsigned long *anslen, int *ansfmt)
{
GwinWidget gw = (GwinWidget)w;
XTextProperty p = {0};
Expand Down