diff options
| author | Karl Heuer | 1995-05-23 03:03:23 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-05-23 03:03:23 +0000 |
| commit | 383f77f1802655ab33b1e56614b0bf62da3526aa (patch) | |
| tree | 42f79974f8e4620e052eb0df13a7a207b270cbb2 /src | |
| parent | 270958e87908dc6530e3c393c5e2ffe618e3bf7b (diff) | |
| download | emacs-383f77f1802655ab33b1e56614b0bf62da3526aa.tar.gz emacs-383f77f1802655ab33b1e56614b0bf62da3526aa.zip | |
(unload_color): Cast args of XFreeColors.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 1dfe6bb2292..24719321ae6 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -370,7 +370,7 @@ unload_color (f, pixel) | |||
| 370 | return; | 370 | return; |
| 371 | cmap = DefaultColormapOfScreen (DefaultScreenOfDisplay (dpy)); | 371 | cmap = DefaultColormapOfScreen (DefaultScreenOfDisplay (dpy)); |
| 372 | BLOCK_INPUT; | 372 | BLOCK_INPUT; |
| 373 | XFreeColors (dpy, cmap, &pixel, 1, 0); | 373 | XFreeColors (dpy, cmap, &pixel, 1, (unsigned long)0); |
| 374 | UNBLOCK_INPUT; | 374 | UNBLOCK_INPUT; |
| 375 | } | 375 | } |
| 376 | 376 | ||