Skip to content
Snippets Groups Projects
Commit d0b3e735 authored by Fabrice Bellard's avatar Fabrice Bellard
Browse files

SYS_SEEK fix (Paul Brook)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1402 c046a42c-6fe2-441c-8c8c-71466251a162
parent e9009676
No related branches found
No related tags found
No related merge requests found
......@@ -124,7 +124,10 @@ uint32_t do_arm_semihosting(CPUState *env)
case SYS_ISTTY:
return isatty(ARG(0));
case SYS_SEEK:
return set_swi_errno(ts, lseek(ARG(0), ARG(1), SEEK_SET));
ret = set_swi_errno(ts, lseek(ARG(0), ARG(1), SEEK_SET));
if (ret == (uint32_t)-1)
return -1;
return 0;
case SYS_FLEN:
{
struct stat buf;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment