From: Uwe Hermann Date: Mon, 31 Dec 2012 22:31:48 +0000 (+0100) Subject: alsa: Add missing % for PRIu64. X-Git-Tag: dsupstream~385 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=a1b9a9bf44b33ee9f3a6ac5ae59a1ced1e2c3281;p=libsigrok.git alsa: Add missing % for PRIu64. --- diff --git a/hardware/alsa/protocol.c b/hardware/alsa/protocol.c index 2dfce2d1..666211b8 100644 --- a/hardware/alsa/protocol.c +++ b/hardware/alsa/protocol.c @@ -330,7 +330,7 @@ SR_PRIV int alsa_set_samplerate(const struct sr_dev_inst *sdi, } while (devc->supp_rates.list[i++] != 0); if (!rate) { - sr_err("Sample rate " PRIu64 " not supported.", newrate); + sr_err("Sample rate %" PRIu64 " not supported.", newrate); return SR_ERR_ARG; }