alsa: Add missing % for PRIu64.

This commit is contained in:
Uwe Hermann 2012-12-31 23:31:48 +01:00
parent 52ba6e05d5
commit a1b9a9bf44
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,7 @@ SR_PRIV int alsa_set_samplerate(const struct sr_dev_inst *sdi,
} while (devc->supp_rates.list[i++] != 0); } while (devc->supp_rates.list[i++] != 0);
if (!rate) { if (!rate) {
sr_err("Sample rate " PRIu64 " not supported.", newrate); sr_err("Sample rate %" PRIu64 " not supported.", newrate);
return SR_ERR_ARG; return SR_ERR_ARG;
} }