Skip to content

Commit e30c454

Browse files
authored
Update publishing-your-event-schema-for-a-manifest-base-provider.md
Attempting to compile the manifest with `mc.exe manifest.man` leads to the following error: `For <data> element 'Image', the prefix of 'win:Pointer' is not in the winmeta namespace.` Changing the https://manifests.microsoft.com/win/2004/08/windows/events URL to http://manifests.microsoft.com/win/2004/08/windows/events (https to http) seem to fix this problem.
1 parent 6048fa7 commit e30c454

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

desktop-src/ETW/publishing-your-event-schema-for-a-manifest-base-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The following manifest defines the events that are used in examples in the [Prov
1616
<!-- <?xml version="1.0" encoding="UTF-16"?> -->
1717
<instrumentationManifest
1818
xmlns="http://schemas.microsoft.com/win/2004/08/events"
19-
xmlns:win="https://manifests.microsoft.com/win/2004/08/windows/events"
19+
xmlns:win="http://manifests.microsoft.com/win/2004/08/windows/events"
2020
xmlns:xs="https://www.w3.org/2001/XMLSchema"
2121
>
2222

0 commit comments

Comments
 (0)