]> sigrok.org Git - libsigrok.git/commitdiff
alsa: Add missing % for PRIu64.
authorUwe Hermann <redacted>
Mon, 31 Dec 2012 22:31:48 +0000 (23:31 +0100)
committerUwe Hermann <redacted>
Mon, 31 Dec 2012 23:37:17 +0000 (00:37 +0100)
hardware/alsa/protocol.c

index 2dfce2d1dfcaaa801ef2619a86dc85fab2c3a976..666211b8432d37f7e3de0677122f333882131b0c 100644 (file)
@@ -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;
        }