diff options
author | Avi Kivity <avi@redhat.com> | 2010-05-26 15:14:36 +0300 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2010-05-26 15:14:36 +0300 |
commit | c20e3c50ac7012a7fc184df1da3f93bf22efc1e2 (patch) | |
tree | 0ead50388ff6378a2c2835368c5098b7004f1d27 /hw/vga.c | |
parent | 9f33c188c7ffa2e94727de80897456840eaf2a11 (diff) | |
parent | 0bfcd599e3f5c5679cc7d0165a0a1822e2f60de2 (diff) |
Merge commit '0bfcd599e3f5c5679cc7d0165a0a1822e2f60de2' into upstream-merge
* commit '0bfcd599e3f5c5679cc7d0165a0a1822e2f60de2':
Fix %lld or %llx printf format use
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw/vga.c')
-rw-r--r-- | hw/vga.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -232,7 +232,7 @@ static void vga_precise_update_retrace_info(VGACommonState *s) "clocking_mode = %d\n" "clock_sel = %d %d\n" "dots = %d\n" - "ticks/char = %lld\n" + "ticks/char = %" PRId64 "\n" "\n", (double) get_ticks_per_sec() / (r->ticks_per_char * r->total_chars), htotal_chars, |