diff options
Diffstat (limited to 'target/s390x/kvm-stub.c')
-rw-r--r-- | target/s390x/kvm-stub.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/s390x/kvm-stub.c b/target/s390x/kvm-stub.c index 29b1054..bf7795e 100644 --- a/target/s390x/kvm-stub.c +++ b/target/s390x/kvm-stub.c @@ -60,12 +60,12 @@ int kvm_s390_get_clock_ext(uint8_t *tod_high, uint64_t *tod_low) return -ENOSYS; } -int kvm_s390_set_clock(uint8_t *tod_high, uint64_t *tod_low) +int kvm_s390_set_clock(uint8_t tod_high, uint64_t tod_low) { return -ENOSYS; } -int kvm_s390_set_clock_ext(uint8_t *tod_high, uint64_t *tod_low) +int kvm_s390_set_clock_ext(uint8_t tod_high, uint64_t tod_low) { return -ENOSYS; } |