Commit 81cb4203 authored by Alan Mikhak's avatar Alan Mikhak Committed by Lorenzo Pieralisi

tools: PCI: Fix compiler warning in pcitest

Fix the following compiler warning in pcitest:

pcitest.c: In function main:
pcitest.c:214:4: warning: too many arguments for
format [-Wformat-extra-args]
    "usage: %s [options]\n"

Fixes: fbca0b28 ("tools: PCI: Add 'h' in optstring of getopt()")
Signed-off-by: default avatarAlan Mikhak <alan.mikhak@sifive.com>
Signed-off-by: default avatarLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Reviewed-by: default avatarPaul Walmsley <paul.walmsley@sifive.com>
parent 8a5e0af2
...@@ -223,7 +223,7 @@ int main(int argc, char **argv) ...@@ -223,7 +223,7 @@ int main(int argc, char **argv)
"\t-r Read buffer test\n" "\t-r Read buffer test\n"
"\t-w Write buffer test\n" "\t-w Write buffer test\n"
"\t-c Copy buffer test\n" "\t-c Copy buffer test\n"
"\t-s <size> Size of buffer {default: 100KB}\n", "\t-s <size> Size of buffer {default: 100KB}\n"
"\t-h Print this help message\n", "\t-h Print this help message\n",
argv[0]); argv[0]);
return -EINVAL; return -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment