From: Andre Noll Date: Mon, 29 Jan 2007 09:14:37 +0000 (+0100) Subject: alsa_write.c: fix compiler warning on x86_64. X-Git-Tag: v0.2.15~52^2 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=24152cd83d4165d844ae93a234b1762ed98dd3ab;hp=10756ea9adc1b757ef1ccf2149bda9771923637c;ds=sidebyside alsa_write.c: fix compiler warning on x86_64. Simple %d -> %zd format string mismatch. --- 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;