Skip to content

Commit

Permalink
Fix errant close-paren.
Browse files Browse the repository at this point in the history
  • Loading branch information
grafikrobot committed Aug 26, 2023
1 parent 33245e2 commit 29142a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/filent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ int file_collect_archive_content_( file_archive_info_t * const archive )
name = c + 1;
}

auto name = b2::value::format( "%.*s", int(endname - name), name ) );
auto name = b2::value::format( "%.*s", int(endname - name), name );

if ( name->as_string().size > 0 )
{
Expand Down

0 comments on commit 29142a3

Please sign in to comment.