From d884b519ef74f7edf51f2c964162f0a2fe80846c Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 6 May 2024 08:33:52 +0200 Subject: pkg/flatrpc: refactor names Remove T suffix from object API types. It seems that we will use these types thoughout the code, and the suffix looks alien in Go code. So it's better to remove it before we started using these names more widely. Also add few extensions we will need to move feature checking to the host. --- tools/syz-runtest/runtest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/syz-runtest/runtest.go b/tools/syz-runtest/runtest.go index 586e4c2cc..fa3dbaa49 100644 --- a/tools/syz-runtest/runtest.go +++ b/tools/syz-runtest/runtest.go @@ -147,7 +147,7 @@ type Manager struct { vmPool *vm.Pool checker *vminfo.Checker checkFiles []string - checkFilesInfo []flatrpc.FileInfoT + checkFilesInfo []flatrpc.FileInfo checkProgs []rpctype.ExecutionRequest checkResults []rpctype.ExecutionResult needCheckResults int -- cgit mrf-deployment