Fortran: fix spelling of flag -fallow-invalid-boz

gcc/fortran/ChangeLog:

	* check.cc (gfc_invalid_boz): Correct spelling of compiler flag in
	hint to -fallow-invalid-boz.
This commit is contained in:
Harald Anlauf 2025-03-28 20:31:08 +01:00
parent 2cb728e14b
commit fb132276d1

View file

@ -67,7 +67,7 @@ gfc_invalid_boz (const char *msg, locus *loc)
return false;
}
const char *hint = _(" [see %<-fno-allow-invalid-boz%>]");
const char *hint = _(" [see %<-fallow-invalid-boz%>]");
size_t len = strlen (msg) + strlen (hint) + 1;
char *msg2 = (char *) alloca (len);
strcpy (msg2, msg);