mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
Fix some functions declared () rather than (void) (Ian Jackson)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4029 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
19f329ad7b
commit
3f47aa8c37
7 changed files with 12 additions and 12 deletions
|
@ -1670,7 +1670,7 @@ void helper_cmpxchg8b(void)
|
|||
CC_SRC = eflags;
|
||||
}
|
||||
|
||||
void helper_single_step()
|
||||
void helper_single_step(void)
|
||||
{
|
||||
env->dr[6] |= 0x4000;
|
||||
raise_exception(EXCP01_SSTP);
|
||||
|
|
|
@ -323,7 +323,7 @@ struct __attribute__ ((__packed__)) vmcb {
|
|||
|
||||
/* function references */
|
||||
|
||||
void helper_stgi();
|
||||
void helper_stgi(void);
|
||||
void vmexit(uint64_t exit_code, uint64_t exit_info_1);
|
||||
int svm_check_intercept_param(uint32_t type, uint64_t param);
|
||||
static inline int svm_check_intercept(unsigned int type) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue