Fix for a few warnings.
git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3708 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
Changes towards version 0.8:
|
Changes towards version 0.8:
|
||||||
- Remove superfluous semicolons, from Louis Delacroix
|
- Some cleanups / warnings fixes, from Louis Delacroix
|
||||||
- Added a free callback function for the values of the key-value pairs
|
- Added a free callback function for the values of the key-value pairs
|
||||||
in hash tables - SvdB
|
in hash tables - SvdB
|
||||||
- Annigilate ActivateStarShip() - SvdB
|
- Annigilate ActivateStarShip() - SvdB
|
||||||
|
|||||||
@@ -131,7 +131,7 @@ TFB_Prim_Stamp (STAMP *stmp, DrawMode mode, POINT ctxOrigin)
|
|||||||
if (!SrcFramePtr)
|
if (!SrcFramePtr)
|
||||||
{
|
{
|
||||||
log_add (log_Warning, "TFB_Prim_Stamp: Tried to draw a NULL frame"
|
log_add (log_Warning, "TFB_Prim_Stamp: Tried to draw a NULL frame"
|
||||||
" (Stamp address = %p)", stmp);
|
" (Stamp address = %p)", (void *) stmp);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
img = SrcFramePtr->image;
|
img = SrcFramePtr->image;
|
||||||
@@ -180,7 +180,7 @@ TFB_Prim_StampFill (STAMP *stmp, Color color, DrawMode mode, POINT ctxOrigin)
|
|||||||
if (!SrcFramePtr)
|
if (!SrcFramePtr)
|
||||||
{
|
{
|
||||||
log_add (log_Warning, "TFB_Prim_StampFill: Tried to draw a NULL frame"
|
log_add (log_Warning, "TFB_Prim_StampFill: Tried to draw a NULL frame"
|
||||||
" (Stamp address = %p)", stmp);
|
" (Stamp address = %p)", (void *) stmp);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
img = SrcFramePtr->image;
|
img = SrcFramePtr->image;
|
||||||
|
|||||||
Reference in New Issue
Block a user