Skip to content

Commit 0f6bf94

Browse files
authored
Merge pull request #291 from sblondon/fix-replace-statement
fix: replace a statement by an assigment
2 parents 17f820d + e54a823 commit 0f6bf94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/samples/gu/spharm/spharm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ void SpharmGenTest(int rendermode)
635635
//objtype = 6; // make sure we end up back in same spot
636636
} break;
637637
default: // none found, so move to next one, and trigger re-gen
638-
objtype == 0;
638+
objtype = 0;
639639
inited = 0;
640640
break;
641641
}

0 commit comments

Comments
 (0)