mirror of
https://git.openafs.org/openafs.git
synced 2025-01-22 17:00:15 +00:00
volinfo: fix bad format string
we need a format string; currently here we have none, which is no good Change-Id: Ib097100383dba9d56056b96c5322734abb765f9d Reviewed-on: http://gerrit.openafs.org/5591 Reviewed-by: Simon Wilkinson <sxw@inf.ed.ac.uk> Reviewed-by: Derrick Brashear <shadow@dementix.org> Tested-by: Derrick Brashear <shadow@dementix.org>
This commit is contained in:
parent
3df03f0abe
commit
0676dc9e0c
@ -1245,7 +1245,7 @@ HandleVnodes(Volume * vp, VnodeClass class)
|
|||||||
for (opr_queue_Scan(scanList, cursor)) {
|
for (opr_queue_Scan(scanList, cursor)) {
|
||||||
struct VnodeScanProc *entry = (struct VnodeScanProc *)cursor;
|
struct VnodeScanProc *entry = (struct VnodeScanProc *)cursor;
|
||||||
if (entry->heading) {
|
if (entry->heading) {
|
||||||
printf(entry->heading);
|
printf("%s", entry->heading);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user