Skip to content

Commit

Permalink
Fixed warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Micket committed Jul 24, 2012
1 parent 9a32529 commit 33490a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SLSubSurf.c
Expand Up @@ -219,7 +219,7 @@ void SL_copyNewLoops(SLSubSurf *ss, MLoop *mloops)

void SL_copyNewTessFaces(SLSubSurf *ss, MFace *mfaces)
{
int i = 0, j, prevJ, subEdgeNext, subEdgePrev;
int i = 0, j, prevJ;
SLFace *face;
SLVert *vert;
SLEdge *eNext, *ePrev;
Expand Down Expand Up @@ -339,7 +339,7 @@ void SL_copyNewVerts(SLSubSurf *ss, MVert *mverts)

/////////////////////////////////////////////////////////////

void _nofreefp(void *x) {
void _nofreefp(void *UNUSED(x)) {
// Nothing to free, its just the pointer, or freed elsewhere
}

Expand Down
1 change: 1 addition & 0 deletions SLSubSurf.h
Expand Up @@ -18,6 +18,7 @@ typedef struct MVert MVert;
typedef struct MEdge MEdge;
typedef struct MLoop MLoop;
typedef struct MPoly MPoly;
typedef struct MFace MFace;
typedef struct DMFlagMat DMFlagMat;
typedef struct MemArena MemArena;
typedef struct GHash GHash;
Expand Down

0 comments on commit 33490a3

Please sign in to comment.