From e7c6024d718f45d84bf252c72d9d792800f21be7 Mon Sep 17 00:00:00 2001 From: Rob Oliver Date: Thu, 24 Nov 2022 12:39:09 -0500 Subject: [PATCH] RPC: Fix device proto FabricId to be 64 bit not 32 --- examples/common/pigweed/protos/device_service.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/common/pigweed/protos/device_service.proto b/examples/common/pigweed/protos/device_service.proto index 6903e4a9055414..19be27ab7f960e 100644 --- a/examples/common/pigweed/protos/device_service.proto +++ b/examples/common/pigweed/protos/device_service.proto @@ -28,7 +28,7 @@ message DeviceInfo { } message FabricInfo { - uint32 fabric_id = 1; + uint64 fabric_id = 1; uint64 node_id = 2; }