diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2022-09-10 05:48:07 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2022-09-11 12:26:14 -0400 |
commit | f43df87188375440dbad33d7c0beed2a607b8d1d (patch) | |
tree | 37a96904adad80020473db71bf8b6ccf7c9e6274 /src/AddTrap.c | |
parent | ea28ca1a2cce8e0d8e5a1f620a809384ed276c37 (diff) |
use _Xconst with DataInt32/DataInt16/memcpy to reduce strict compiler warnings
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Diffstat (limited to 'src/AddTrap.c')
-rw-r--r-- | src/AddTrap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AddTrap.c b/src/AddTrap.c index 5d01114..5588ea3 100644 --- a/src/AddTrap.c +++ b/src/AddTrap.c @@ -60,7 +60,7 @@ XRenderAddTraps (Display *dpy, } SetReqLen (req, len, len); len <<= 2; - DataInt32 (dpy, (int *) traps, (long) len); + DataInt32 (dpy, (_Xconst int *) traps, (long) len); ntrap -= n; traps += n; } |