From 67fc6e40c83927d2a7f3a78af633fe76cef8cbae Mon Sep 17 00:00:00 2001 From: Szczepan Zalega Date: Tue, 29 Mar 2016 14:46:45 +0200 Subject: code cleanup --- include/stick10_commands.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include/stick10_commands.h') diff --git a/include/stick10_commands.h b/include/stick10_commands.h index f58ace4..f1903aa 100644 --- a/include/stick10_commands.h +++ b/include/stick10_commands.h @@ -71,11 +71,11 @@ class WriteToHOTPSlot : Command { std::string dissect() const { std::stringstream ss; ss << "slot_number:\t" << (int)(slot_number) << std::endl; - ss << "slot_name" << slot_name << std::endl; - ss << "slot_secret" << slot_secret << std::endl; - ss << "slot_config" << slot_config << std::endl; - ss << "slot_token_id" << slot_token_id << std::endl; - ss << "slot_counter" << slot_counter << std::endl; + ss << "slot_name:\t" << slot_name << std::endl; + ss << "slot_secret:\t" << slot_secret << std::endl; + ss << "slot_config:\t" << slot_config << std::endl; + ss << "slot_token_id:\t" << slot_token_id << std::endl; + ss << "slot_counter:\t" << slot_counter << std::endl; return ss.str(); } } __packed; -- cgit v1.2.1