Skip to content

Commit

Permalink
removed extraneous return
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdefreyne committed Dec 29, 2011
1 parent b2754b9 commit 2d83b25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Monet/MOGraphicsContext.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ MORect MOGraphicsContext_getCurrentRect(void)

void MOGraphicsContext_push(MOGraphicsContext *aGraphicsContext)
{
return SBArrayPush(MOGraphicsContext_getStack(), aGraphicsContext);
SBArrayPush(MOGraphicsContext_getStack(), aGraphicsContext);
}

void MOGraphicsContext_pop(void)
Expand Down

0 comments on commit 2d83b25

Please sign in to comment.