Skip to content

Commit

Permalink
Fix write type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
wendy512 committed Nov 22, 2024
1 parent e439b64 commit 23bd1cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ func (c *Client) GetVariableSpecType(objectReference string, fc FC) (MmsType, er
return Uint32, nil
}
default:
return mmsType, fmt.Errorf("unsupported type %d", mmsType)
return mmsType, nil
}
}

Expand Down

0 comments on commit 23bd1cd

Please sign in to comment.