Skip to content

Commit

Permalink
Quick Fix CharString to be String type. (#11800)
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh V [Apple] authored Nov 16, 2021
1 parent 1903401 commit fcf4c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/chip-tool/commands/common/Command.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ size_t Command::AddArgument(const char * name, const char * value, bool optional
size_t Command::AddArgument(const char * name, char ** value, bool optional)
{
Argument arg;
arg.type = ArgumentType::CharString;
arg.type = ArgumentType::String;
arg.name = name;
arg.value = reinterpret_cast<void *>(value);
arg.optional = optional;
Expand Down

0 comments on commit fcf4c33

Please sign in to comment.