Skip to content

Commit

Permalink
fix: fix build (stmcginnis#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
xflipped authored and Markus Witt committed May 24, 2023
1 parent da0bf3b commit d3aef18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redfish/logservice.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ func (logservice *LogService) Entries() ([]*LogEntry, error) {
func (logservice *LogService) FilteredEntries(options ...common.FilterOption) ([]*LogEntry, error) {
var filter common.Filter
filter.SetFilter(options...)
return ListReferencedLogEntrys(logservice.Client, fmt.Sprintf("%s%s", logservice.entries, filter))
return ListReferencedLogEntrys(logservice.GetClient(), fmt.Sprintf("%s%s", logservice.entries, filter))
}

// ClearLog shall delete all entries found in the Entries collection for this
Expand Down

0 comments on commit d3aef18

Please sign in to comment.