diff options
| author | Paolo Bonzini | 2012-06-07 08:48:09 +0200 |
|---|---|---|
| committer | Paolo Bonzini | 2012-06-07 09:19:31 +0200 |
| commit | 4720bd050655a56b4b048d8856a03ae187481a7f (patch) | |
| tree | 4bcb80b056b08a1282bff2a1177957fc4cc5ab74 /target-i386 | |
| parent | dump: do not compile dump.o for user-mode emulation (diff) | |
| download | qemu-4720bd050655a56b4b048d8856a03ae187481a7f.tar.gz qemu-4720bd050655a56b4b048d8856a03ae187481a7f.tar.xz qemu-4720bd050655a56b4b048d8856a03ae187481a7f.zip | |
dump: change cpu_get_note_size to return ssize_t
So that it can use the same prototype in both cases.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-i386')
| -rw-r--r-- | target-i386/arch_dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/arch_dump.c b/target-i386/arch_dump.c index 135d855c4a..7c2b514383 100644 --- a/target-i386/arch_dump.c +++ b/target-i386/arch_dump.c @@ -415,7 +415,7 @@ int cpu_get_dump_info(ArchDumpInfo *info) return 0; } -size_t cpu_get_note_size(int class, int machine, int nr_cpus) +ssize_t cpu_get_note_size(int class, int machine, int nr_cpus) { int name_size = 5; /* "CORE" or "QEMU" */ size_t elf_note_size = 0; |
