1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fix for bug #23256 "doesn't build on alpha"

- compilation on the Alpha platform was broken because the Alpha-specific code was not updated after replacing the SIGRETURN_FRAME_COUNT constant with a variable
This commit is contained in:
unknown
2006-10-20 14:31:47 +04:00
parent 9a506df0c2
commit dd18eb1bfc

View File

@ -186,7 +186,7 @@ terribly wrong...\n");
#if defined(__alpha__) && defined(__GNUC__)
uchar** new_fp = find_prev_fp(pc, fp);
if (frame_count == SIGRETURN_FRAME_COUNT - 1)
if (frame_count == sigreturn_frame_count - 1)
{
new_fp += 90;
}