Skip to content

Commit

Permalink
Spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Ladislav Zezula committed Aug 21, 2023
1 parent 4b30333 commit 2c54c0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libyara/modules/pe/pe.c
Original file line number Diff line number Diff line change
Expand Up @@ -2026,14 +2026,14 @@ const char* pe_get_section_full_name(
unsigned int one_char = (unsigned char)(string[len]);

// Valid string
if(one_char == 0)
if (one_char == 0)
{
*section_full_name_length = len;
return string;
}

// string contain unprintable character
if(!isprint(one_char))
if (!isprint(one_char))
return NULL;
}

Expand Down

0 comments on commit 2c54c0c

Please sign in to comment.