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:
Derrick Brashear 2011-10-10 16:57:35 -04:00
parent 3df03f0abe
commit 0676dc9e0c

View File

@ -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);
} }
} }