diff options
author | Takashi Iwai <tiwai@suse.de> | 2011-03-08 12:20:46 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-03-08 12:20:46 -0500 |
commit | a2800300f28bd1814f3ba8cfd93ecb0b00c2dfe3 (patch) | |
tree | dfc40655d9d26da3a4d5dec0859d603d8f2b55ce /sound/pci/asihpi | |
parent | 0e82e5fa97614c9ca3efca5f8dca69dffd1c0ec0 (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.c | 2 |
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 | } |