Skip to content

Commit

Permalink
Fixed unused argument warning in HEdge_SetProperty()
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed May 21, 2012
1 parent dc60159 commit ee9ce81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/hedge.cpp
Expand Up @@ -293,7 +293,7 @@ void HEdge_Delete(HEdge* hedge)

int HEdge_SetProperty(HEdge* hedge, const setargs_t* args)
{
assert(hedge);
DENG_UNUSED(hedge);
Con_Error("HEdge_SetProperty: Property %s is not writable.\n", DMU_Str(args->prop));
return false; // Continue iteration.
}
Expand Down

0 comments on commit ee9ce81

Please sign in to comment.