summaryrefslogtreecommitdiff
path: root/src/components/protocol_handler/include/protocol_handler/protocol_payload.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/protocol_handler/include/protocol_handler/protocol_payload.h')
-rw-r--r--src/components/protocol_handler/include/protocol_handler/protocol_payload.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/protocol_handler/include/protocol_handler/protocol_payload.h b/src/components/protocol_handler/include/protocol_handler/protocol_payload.h
index 6fda9bdd9..861d29d4d 100644
--- a/src/components/protocol_handler/include/protocol_handler/protocol_payload.h
+++ b/src/components/protocol_handler/include/protocol_handler/protocol_payload.h
@@ -49,10 +49,10 @@ namespace protocol_handler {
struct ProtocolPayloadHeaderV2 {
ProtocolPayloadHeaderV2()
: rpc_type(kRpcTypeReserved),
- rpc_function_id(0), corellation_id(0), json_size(0) {}
+ rpc_function_id(0), correlation_id(0), json_size(0) {}
RpcType rpc_type;
uint32_t rpc_function_id;
- uint32_t corellation_id;
+ uint32_t correlation_id;
uint32_t json_size;
};