aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/tfprof/tfprof_main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/tools/tfprof/tfprof_main.cc')
-rw-r--r--tensorflow/tools/tfprof/tfprof_main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/tools/tfprof/tfprof_main.cc b/tensorflow/tools/tfprof/tfprof_main.cc
index 7d667476a4..2486c2ac28 100644
--- a/tensorflow/tools/tfprof/tfprof_main.cc
+++ b/tensorflow/tools/tfprof/tfprof_main.cc
@@ -41,7 +41,7 @@ limitations under the License.
using tensorflow::str_util::Split;
void completion(const char* buf, linenoiseCompletions* lc) {
- tensorflow::string buf_str = tensorflow::string(buf);
+ tensorflow::string buf_str = buf;
if (buf_str.find(" ") == buf_str.npos) {
for (const char* opt : tensorflow::tfprof::kCmds) {
if (tensorflow::string(opt).find(buf_str) == 0) {
@@ -246,7 +246,7 @@ int main(int argc, char** argv) {
linenoiseHistoryLoad(".tfprof_history.txt");
for (char* line = nullptr; (line = linenoise("tfprof> ")) != nullptr;) {
- tensorflow::string line_s = tensorflow::string(line);
+ tensorflow::string line_s = line;
free(line);
if (line_s.empty()) {