diff options
author | Hans de Goede <hdegoede@redhat.com> | 2012-05-07 09:24:34 +0200 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2012-05-07 16:31:39 +0400 |
commit | a4e652ebc0b2c473f2ded93e8528095da8251c6a (patch) | |
tree | da19035b5a13ccda7dc8d814da128d7d41007965 /hw/ac97.c | |
parent | 8f473dd104f0937ce98523fa6f9de0bd845aebbe (diff) |
hw/ac97: Fix log message in mixer_load
Fix a small copy and paste error in logging.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'hw/ac97.c')
-rw-r--r-- | hw/ac97.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -342,7 +342,7 @@ static uint16_t mixer_load (AC97LinkState *s, uint32_t i) uint16_t val = 0xffff; if (i + 2 > sizeof (s->mixer_data)) { - dolog ("mixer_store: index %d out of bounds %zd\n", + dolog ("mixer_load: index %d out of bounds %zd\n", i, sizeof (s->mixer_data)); } else { |