Skip to content

Commit

Permalink
Merge pull request #111 from intel/ekovanov_domain_check
Browse files Browse the repository at this point in the history
correcting a typo when creating a domain
  • Loading branch information
ekovanova committed Nov 14, 2023
2 parents abf1808 + bcae948 commit 4ec67c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ittnotify/ittnotify_config.h
Expand Up @@ -610,7 +610,7 @@ typedef struct ___itt_global
h->nameA = NULL; \
h->nameW = name ? _wcsdup(name) : NULL; \
h->domainA = NULL; \
h->domainW = name ? _wcsdup(domain) : NULL; \
h->domainW = domain ? _wcsdup(domain) : NULL; \
h->type = type; \
h->index = 0; \
h->next = NULL; \
Expand Down

0 comments on commit 4ec67c7

Please sign in to comment.