Skip to content

Commit b2f4873

Browse files
committed
trivial: remove unused parameter from helper
Signed-off-by: Anders F Björklund <[email protected]>
1 parent 8584007 commit b2f4873

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/cidata/cidata.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ func setupEnv(y *limayaml.LimaYAML, args TemplateArgs) (map[string]string, error
110110
return env, nil
111111
}
112112

113-
func templateArgs(instDir, name string, y *limayaml.LimaYAML, udpDNSLocalPort, tcpDNSLocalPort int, nerdctlArchive string, vsockPort int, virtioPort string) (*TemplateArgs, error) {
113+
func templateArgs(instDir, name string, y *limayaml.LimaYAML, udpDNSLocalPort, tcpDNSLocalPort, vsockPort int, virtioPort string) (*TemplateArgs, error) {
114114
if err := limayaml.Validate(*y, false); err != nil {
115115
return nil, err
116116
}
@@ -320,7 +320,7 @@ func templateArgs(instDir, name string, y *limayaml.LimaYAML, udpDNSLocalPort, t
320320
}
321321

322322
func GenerateISO9660(instDir, name string, y *limayaml.LimaYAML, udpDNSLocalPort, tcpDNSLocalPort int, nerdctlArchive string, vsockPort int, virtioPort string) error {
323-
args, err := templateArgs(instDir, name, y, udpDNSLocalPort, tcpDNSLocalPort, nerdctlArchive, vsockPort, virtioPort)
323+
args, err := templateArgs(instDir, name, y, udpDNSLocalPort, tcpDNSLocalPort, vsockPort, virtioPort)
324324
if err != nil {
325325
return err
326326
}

0 commit comments

Comments
 (0)