Merge "msm: vidc: change format specifier for size_t"

This commit is contained in:
Linux Build Service Account 2016-12-06 14:33:12 -08:00 committed by Gerrit - the friendly Code Review server
commit 2acbcf88e8

View file

@ -328,7 +328,7 @@ int vmem_allocate(size_t size, phys_addr_t *addr)
goto exit;
}
if (!size) {
pr_err("%s Invalid size %ld\n", __func__, size);
pr_err("%s Invalid size %zu\n", __func__, size);
rc = -EINVAL;
goto exit;
}