diff options
Diffstat (limited to 'src/image.c')
-rw-r--r-- | src/image.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/image.c b/src/image.c index af52ae7..16e39e7 100644 --- a/src/image.c +++ b/src/image.c @@ -320,7 +320,9 @@ ImageNode *CreateImageFromXImages(XImage *image, XImage *shape) { /**************************************************************************** ****************************************************************************/ -void DestroyImage(ImageNode *image) { +void +DestroyImage(ImageNode *image) +{ if(image) { Release(image->data); Release(image); @@ -352,8 +354,10 @@ int AllocateColor(Display *d, Colormap cmap, char *name, * We don't need to do anything here as color.c takes care of this. ****************************************************************************/ #ifdef USE_XPM -int FreeColors(Display *d, Colormap cmap, Pixel *pixels, int n, - void *closure) { +int +FreeColors(Display *d, Colormap cmap, Pixel *pixels, int n, + void *closure) +{ return 1; |