Fix errors introduced with guid-by-value change

Signed-off-by: Kevin Parsons <kevpar@microsoft.com>
This commit is contained in:
Kevin Parsons
2019-05-08 16:43:22 -07:00
parent d918a0ad4e
commit a2a7cd6b7d
6 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ import (
"github.com/sirupsen/logrus"
)
func callback(sourceID *guid.GUID, state etw.ProviderState, level etw.Level, matchAnyKeyword uint64, matchAllKeyword uint64, filterData uintptr) {
func callback(sourceID guid.GUID, state etw.ProviderState, level etw.Level, matchAnyKeyword uint64, matchAllKeyword uint64, filterData uintptr) {
fmt.Printf("Callback: isEnabled=%d, level=%d, matchAnyKeyword=%d\n", state, level, matchAnyKeyword)
}