Skip to content

Commit

Permalink
fix(packages): fix privileges concat string
Browse files Browse the repository at this point in the history
Signed-off-by: Hosung Kim [email protected]
  • Loading branch information
hs0225 authored and daeyeon committed Apr 5, 2024
1 parent 725d22f commit 1a80a35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/packages/device-api/src/TizenRuntimeInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const std::string TizenRuntimeInfo::privileges() {

std::stringstream stream;
for (auto& privilege : privileges) {
stream << privilege.first << ", ";
stream << privilege.first << ",";
}

privileges_ = stream.str();
Expand Down

0 comments on commit 1a80a35

Please sign in to comment.