Skip to content

Commit a51aba8

Browse files
grasci-armsoumeh01
andauthored
Fixed warning initializing structure (#1270) (#2153)
Co-authored-by: Sourabh Mehta <[email protected]>
1 parent 308874d commit a51aba8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/projmgr/src/ProjMgrRpcServer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ RteComponentAggregate* RpcHandler::GetComponentAggregate(const string& context,
194194
}
195195

196196
RpcArgs::GetVersionResult RpcHandler::GetVersion(void) {
197-
RpcArgs::GetVersionResult res = {true};
197+
RpcArgs::GetVersionResult res = {{true}};
198198
res.message = string("Running ") + INTERNAL_NAME + " " + VERSION_STRING;
199199
res.version = VERSION_STRING;
200200
return res;

0 commit comments

Comments
 (0)