Skip to content

Commit

Permalink
Merge pull request open62541#6084 from open62541/1.3
Browse files Browse the repository at this point in the history
Merge 1.3 to 1.4
  • Loading branch information
jpfr authored Oct 23, 2023
2 parents 73a0494 + f75c9ac commit d0db15c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/nodeset_compiler/backend_open62541_nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ def generateObjectNodeCode(node):
is_first = False
if node.eventNotifier & 4:
if not is_first:
code_part += " || "
code_part += " | "
code_part += "UA_EVENTNOTIFIER_HISTORY_READ"
is_first = False
if node.eventNotifier & 8:
if not is_first:
code_part += " || "
code_part += " | "
code_part += "UA_EVENTNOTIFIER_HISTORY_WRITE"
is_first = False
code_part += ";"
Expand Down

0 comments on commit d0db15c

Please sign in to comment.