SYS_SEEK fix (Paul Brook)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1402 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2005-04-26 20:44:10 +00:00
parent e90096763d
commit d0b3e73525
1 changed files with 4 additions and 1 deletions

View File

@ -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;