diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2012-03-25 11:04:10 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2012-05-28 23:21:43 -0400 |
commit | c7ffbacac36580a654349288e3e87cb8b46ba8fd (patch) | |
tree | b969f9afa6e9983ac0f2a2a8949e145a301c583e /src/resume.c | |
parent | d3e4367529dc892b861c4dfb4f93f639e7ff3f05 (diff) | |
download | seabios-c7ffbacac36580a654349288e3e87cb8b46ba8fd.tar.gz |
Rename call16 to farcall16.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/resume.c')
-rw-r--r-- | src/resume.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resume.c b/src/resume.c index 911ad964..f1a96ac1 100644 --- a/src/resume.c +++ b/src/resume.c @@ -120,7 +120,7 @@ s3_resume(void) memset(&br, 0, sizeof(br)); dprintf(1, "Jump to resume vector (%x)\n", s3_resume_vector); br.code = FLATPTR_TO_SEGOFF((void*)s3_resume_vector); - call16big(&br); + farcall16big(&br); } // Attempt to invoke a hard-reboot. |