Skip to content

Commit 8fc9ffe

Browse files
vermaserentueda
authored andcommitted
Repaired a small bug in the compilation of the debugflag in Format,O3
1 parent 7ff6ebb commit 8fc9ffe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sources/compcomm.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6245,13 +6245,13 @@ int CoOptimizeOption(UBYTE *s)
62456245
}
62466246
}
62476247
else if ( StrICmp(value,(UBYTE *)"on") == 0 ) {
6248-
AO.Optimize.printstats = 1;
6248+
AO.Optimize.debugflags = 1;
62496249
}
62506250
else if ( StrICmp(value,(UBYTE *)"off") == 0 ) {
6251-
AO.Optimize.printstats = 0;
6251+
AO.Optimize.debugflags = 0;
62526252
}
62536253
else {
6254-
AO.Optimize.printstats = 0;
6254+
AO.Optimize.debugflags = 0;
62556255
MesPrint("&Unrecognized option value in Format,Optimize statement: %s=%s",name,value);
62566256
error = 1;
62576257
}

0 commit comments

Comments
 (0)