From 2c08c83b24c63e2a5e399d3aa987cb9cedcbac35 Mon Sep 17 00:00:00 2001 From: Deon George Date: Tue, 21 Dec 2010 15:41:50 +1100 Subject: [PATCH] Added spacing for filesize --- tsmpipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsmpipe.c b/tsmpipe.c index 87ccdf7..9819b9c 100644 --- a/tsmpipe.c +++ b/tsmpipe.c @@ -817,7 +817,7 @@ int tsm_listfile_cb(dsmQueryType qType, DataBlk *qResp, void * userdata) filesize <<= 32; filesize |= rSizeEst->lo; QryDateToStr(s, *insDate); - printf("%s %s %lld %s %s%s\n", s, state, filesize, rObjName->fs, rObjName->hl, rObjName->ll); + printf("%s %s %10lld %s %s%s\n", s, state, filesize, rObjName->fs, rObjName->hl, rObjName->ll); return 1; }