From 88912cf60baf0e85c55cf9cb277276e1fb184023 Mon Sep 17 00:00:00 2001 From: meep-eep Date: Wed, 21 Dec 2005 08:24:47 +0000 Subject: [PATCH] Get rid of warning. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2097 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/graphics/cmap.c | 2 +- sc2/src/sc2code/libs/graphics/cmap.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sc2/src/sc2code/libs/graphics/cmap.c b/sc2/src/sc2code/libs/graphics/cmap.c index 13e509cbc..731304b27 100644 --- a/sc2/src/sc2code/libs/graphics/cmap.c +++ b/sc2/src/sc2code/libs/graphics/cmap.c @@ -428,7 +428,7 @@ finish_colormap_xform (int which) * Only one thread should ever be allowed to be calling this at any time */ BOOLEAN -XFormColorMap_step () +XFormColorMap_step (void) { BOOLEAN Changed = FALSE; int x; diff --git a/sc2/src/sc2code/libs/graphics/cmap.h b/sc2/src/sc2code/libs/graphics/cmap.h index 09dd857f9..6faabd3dd 100644 --- a/sc2/src/sc2code/libs/graphics/cmap.h +++ b/sc2/src/sc2code/libs/graphics/cmap.h @@ -56,7 +56,7 @@ extern void TFB_ColorMapToRGB (TFB_Palette *pal, int colormap_index); extern TFB_ColorMap * TFB_GetColorMap (int index); extern void TFB_ReturnColorMap (TFB_ColorMap *map); -extern BOOLEAN XFormColorMap_step (); +extern BOOLEAN XFormColorMap_step (void); #endif