chore: remove unused return value from BindSourcesToStructs (#9033)

This commit is contained in:
Thomas Müller
2024-04-30 18:18:31 +02:00
committed by GitHub
parent 4f7480d322
commit a8cbc612cc
44 changed files with 53 additions and 54 deletions

View File

@@ -13,7 +13,7 @@ import (
// ParseConfig loads configuration from known paths.
func ParseConfig(cfg *config.Config) error {
_, err := ociscfg.BindSourcesToStructs(cfg.Service.Name, cfg)
err := ociscfg.BindSourcesToStructs(cfg.Service.Name, cfg)
if err != nil {
return err
}