Pass in client for thread/group status op

Signed-off-by: Jens Axboe <axboe@kernel.dk>
diff --git a/gfio.c b/gfio.c
index 157dd66..ebfa4b9 100644
--- a/gfio.c
+++ b/gfio.c
@@ -154,16 +154,18 @@
 	fio_client_ops.disk_util(client, cmd);
 }
 
-static void gfio_thread_status_op(struct fio_net_cmd *cmd)
+static void gfio_thread_status_op(struct fio_client *client,
+				  struct fio_net_cmd *cmd)
 {
 	printf("gfio_thread_status_op called\n");
-	fio_client_ops.thread_status(cmd);
+	fio_client_ops.thread_status(client, cmd);
 }
 
-static void gfio_group_stats_op(struct fio_net_cmd *cmd)
+static void gfio_group_stats_op(struct fio_client *client,
+				struct fio_net_cmd *cmd)
 {
 	printf("gfio_group_stats_op called\n");
-	fio_client_ops.group_stats(cmd);
+	fio_client_ops.group_stats(client, cmd);
 }
 
 static void gfio_update_eta(struct jobs_eta *je)