mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
replace abort with _mesa_problem()
This commit is contained in:
parent
8d675aa637
commit
0aab798a18
1 changed files with 2 additions and 1 deletions
|
|
@ -569,7 +569,8 @@ int _slang_execute2 (const slang_assembly_file *file, slang_machine *mach)
|
|||
(GLint) (stack[mach->sp]._float) ? "true" : "false");
|
||||
break;
|
||||
default:
|
||||
assert (0);
|
||||
_mesa_problem(NULL, "bad slang opcode 0x%x", a->type);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue