Correct an argument type of iopl syscall for Linuxulator. This also fixes

a warning from Clang, i. e., "args->level < 0 is always false".
This commit is contained in:
Jung-uk Kim
2012-04-16 23:16:18 +00:00
parent 13fa650c75
commit f69f4d8630
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -203,7 +203,7 @@
struct l_newstat *buf); }
; 109: olduname
109 AUE_NULL STD { int linux_uname(void); }
110 AUE_NULL STD { int linux_iopl(l_ulong level); }
110 AUE_NULL STD { int linux_iopl(l_int level); }
111 AUE_NULL STD { int linux_vhangup(void); }
112 AUE_NULL UNIMPL idle
113 AUE_NULL STD { int linux_vm86old(void); }