Skip to content

Commit

Permalink
codestyle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ypopovych committed May 1, 2024
1 parent 0965345 commit 28ebcfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/signtx/stx_ui.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ static inline void id_string_remove_middle(char* str, size_t len) {
static inline bool format_hex_id(const uint8_t* id, size_t id_len, char* out, size_t out_len) {
int len = format_hex(id, id_len, out, out_len);
if (len <= 0) return false;
id_string_remove_middle(out, len-1);
id_string_remove_middle(out, len - 1);
return true;
}

Expand Down

0 comments on commit 28ebcfc

Please sign in to comment.