diff options
author | Keith Packard <keithp@keithp.com> | 2014-03-05 19:11:25 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-03-05 19:18:44 -0800 |
commit | f640487e27a3904831ff85033a2869e981e9d942 (patch) | |
tree | 48a3235a42e957f8062f23925e719b70b94a6b12 /do_valgc.c | |
parent | 9ba0ce7d849bbd94644664b60b50bd1e2d5813b7 (diff) |
Switch to 64-bit ints
Diffstat (limited to 'do_valgc.c')
-rw-r--r-- | do_valgc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -31,7 +31,7 @@ SOFTWARE. static Window win[2]; int -InitGC(XParms xp, Parms p, int reps) +InitGC(XParms xp, Parms p, int64_t reps) { win[0] = XCreateSimpleWindow( xp->d, xp->w, 10, 10, 10, 10, 1, xp->foreground, xp->background); @@ -42,7 +42,7 @@ InitGC(XParms xp, Parms p, int reps) } void -DoChangeGC(XParms xp, Parms p, int reps) +DoChangeGC(XParms xp, Parms p, int64_t reps) { int i; XGCValues gcv; |