From 24152cd83d4165d844ae93a234b1762ed98dd3ab Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 29 Jan 2007 10:14:37 +0100 Subject: [PATCH 1/1] alsa_write.c: fix compiler warning on x86_64. Simple %d -> %zd format string mismatch. --- alsa_write.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alsa_write.c b/alsa_write.c index 4510b975..705713b9 100644 --- a/alsa_write.c +++ b/alsa_write.c @@ -216,7 +216,7 @@ __malloc void *alsa_parse_config(char *options) { struct alsa_write_args_info *conf = para_calloc(sizeof(struct alsa_write_args_info)); - PARA_INFO_LOG("options: %s, %d\n", options, strcspn(options, " \t")); + PARA_INFO_LOG("options: %s, %zd\n", options, strcspn(options, " \t")); int ret = alsa_cmdline_parser_string(options, conf, "alsa_write"); if (ret) goto err_out; -- 2.39.2