Skip to content

Commit

Permalink
chore: apply suggestions from code review
Browse files Browse the repository at this point in the history
Signed-off-by: Pranav <85227306+Pranavchiku@users.noreply.github.com>
  • Loading branch information
Pranavchiku authored Mar 19, 2024
1 parent 822707a commit e7bd520
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ int main( void ) {
int i;
for ( i = 0; i < 5; i++ ) {
y = stdlib_base_fast_uint32_log2( x[ i ] );
printf( "uint32_log2(%u) %u\n", x[ i ], y );
printf( "uint32_log2(%u) = %u\n", x[ i ], y );
}
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ int main( void ) {
int i;
for ( i = 0; i < 5; i++ ) {
y = stdlib_base_fast_uint32_log2( x[ i ] );
printf( "uint32_log2(%u) %u\n", x[ i ], y );
printf( "uint32_log2(%u) = %u\n", x[ i ], y );
}
}

0 comments on commit e7bd520

Please sign in to comment.