diff options
| author | Blue Swirl | 2010-05-22 10:02:12 +0200 |
|---|---|---|
| committer | Blue Swirl | 2010-05-22 10:02:12 +0200 |
| commit | 0bfcd599e3f5c5679cc7d0165a0a1822e2f60de2 (patch) | |
| tree | 3a2d53ae75005891bf4dd662465cc1cffab36f0b /audio | |
| parent | Compile dma only once (diff) | |
| download | qemu-0bfcd599e3f5c5679cc7d0165a0a1822e2f60de2.tar.gz qemu-0bfcd599e3f5c5679cc7d0165a0a1822e2f60de2.tar.xz qemu-0bfcd599e3f5c5679cc7d0165a0a1822e2f60de2.zip | |
Fix %lld or %llx printf format use
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'audio')
| -rw-r--r-- | audio/audio_template.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/audio_template.h b/audio/audio_template.h index 6b19848af4..2f5224ba29 100644 --- a/audio/audio_template.h +++ b/audio/audio_template.h @@ -541,7 +541,7 @@ uint64_t glue (AUD_get_elapsed_usec_, TYPE) (SW *sw, QEMUAudioTimeStamp *ts) cur_ts = sw->hw->ts_helper; old_ts = ts->old_ts; - /* dolog ("cur %lld old %lld\n", cur_ts, old_ts); */ + /* dolog ("cur %" PRId64 " old %" PRId64 "\n", cur_ts, old_ts); */ if (cur_ts >= old_ts) { delta = cur_ts - old_ts; |
