Skip to content

Commit

Permalink
Fix missing bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
szszszsz committed Aug 29, 2022
1 parent 7b9e076 commit b740cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libnitrokey/stick10_commands_0.8.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ namespace nitrokey {
std::stringstream ss;
#ifdef LOG_VOLATILE_DATA
ss << "data:" << std::endl
<< ::nitrokey::misc::hexdump(reinterpret_cast<const uint8_t *>&data), sizeof data);
<< ::nitrokey::misc::hexdump(reinterpret_cast<const uint8_t *> (&data), sizeof data);
#else
ss << " Volatile data not logged" << std::endl;
#endif
Expand Down

0 comments on commit b740cb4

Please sign in to comment.