# HG changeset patch # User Edouard Tisserant # Date 1642429067 -3600 # Node ID 2f5c30054d5026c956b81ff807fab3c6e2dd3596 # Parent 3aac4241dafa62c43ecd96941e85127932824fa8 OPC-UA client: "static" class was forgotten for open62541 client structure preventing multiple client. diff -r 3aac4241dafa -r 2f5c30054d50 opc_ua/opcua_client_maker.py --- a/opc_ua/opcua_client_maker.py Mon Jan 17 15:15:00 2022 +0100 +++ b/opc_ua/opcua_client_maker.py Mon Jan 17 15:17:47 2022 +0100 @@ -485,11 +485,11 @@ #include #include -UA_Client *client; +static UA_Client *client; #define DECL_VAR(ua_type, C_type, c_loc_name) \\ -UA_Variant c_loc_name##_variant; \\ -C_type c_loc_name##_buf = 0; \\ +static UA_Variant c_loc_name##_variant; \\ +static C_type c_loc_name##_buf = 0; \\ C_type *c_loc_name = &c_loc_name##_buf; %(decl)s