aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/asihpi
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2011-03-08 12:20:46 -0500
committerTakashi Iwai <tiwai@suse.de>2011-03-08 12:20:46 -0500
commita2800300f28bd1814f3ba8cfd93ecb0b00c2dfe3 (patch)
treedfc40655d9d26da3a4d5dec0859d603d8f2b55ce /sound/pci/asihpi
parent0e82e5fa97614c9ca3efca5f8dca69dffd1c0ec0 (diff)
ALSA: asihpi - Use %zd for size_t argument in error message
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/asihpi')
-rw-r--r--sound/pci/asihpi/hpi6205.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/asihpi/hpi6205.c b/sound/pci/asihpi/hpi6205.c
index 33136cb0d251..620525bdac59 100644
--- a/sound/pci/asihpi/hpi6205.c
+++ b/sound/pci/asihpi/hpi6205.c
@@ -2088,7 +2088,7 @@ static u16 message_response_sequence(struct hpi_adapter_obj *pao,
2088 phr->specific_error = sizeof(interface->u); 2088 phr->specific_error = sizeof(interface->u);
2089 phr->size = sizeof(struct hpi_response_header); 2089 phr->size = sizeof(struct hpi_response_header);
2090 HPI_DEBUG_LOG(ERROR, 2090 HPI_DEBUG_LOG(ERROR,
2091 "message len %d too big for buffer %ld \n", phm->size, 2091 "message len %d too big for buffer %zd \n", phm->size,
2092 sizeof(interface->u)); 2092 sizeof(interface->u));
2093 return 0; 2093 return 0;
2094 } 2094 }