mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-05 13:34:21 -04:00
Use any instead of interface
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
parent
8153390a57
commit
29206ac845
10 changed files with 19 additions and 19 deletions
|
@ -155,6 +155,6 @@ func (v *Validators) checkPCRs(pcrs map[uint32][]byte) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func writeFmt(sb *strings.Builder, fmtStr string, args ...interface{}) {
|
||||
func writeFmt(sb *strings.Builder, fmtStr string, args ...any) {
|
||||
sb.WriteString(fmt.Sprintf(fmtStr, args...))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue