Fixed accidental assignment in each of SDKTools and sp compiler (bug 5745, r=psychonic).

This commit is contained in:
Kyle Sanderson
2013-07-18 15:50:50 -04:00
parent 7e0c0d79bc
commit b96e0c8713
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -363,7 +363,7 @@ SC_FUNC int matchtag(int formaltag,int actualtag,int allowcoerce)
if (v->name[5] == '@')
{
usage = uPUBLIC;
} else if (v->name[5] = '!') {
} else if (v->name[5] == '!') {
usage = uSTOCK;
}