From 7cef0d7a6b25600d702ebf1e1eb00fc75b521fb5 Mon Sep 17 00:00:00 2001 From: Alex Dadgar Date: Mon, 20 Feb 2017 16:22:31 -0800 Subject: [PATCH] fix pointer --- command/alloc_status.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/alloc_status.go b/command/alloc_status.go index 130292ea2..27b7cd0c4 100644 --- a/command/alloc_status.go +++ b/command/alloc_status.go @@ -426,7 +426,7 @@ func (c *AllocStatusCommand) outputTaskResources(alloc *api.Allocation, task str cpuUsage, memUsage, humanize.IBytes(uint64(*resource.DiskMB*bytesPerMegabyte)), - resource.IOPS, + *resource.IOPS, firstAddr)) for i := 1; i < len(addr); i++ { resourcesOutput = append(resourcesOutput, fmt.Sprintf("||||%v", addr[i]))