Skip to content

Commit 42d51eb

Browse files
authored
style: change spaces to tab
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 8a843ad commit 42d51eb

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/fmodf/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/math/base/special/fmodf/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ float stdlib_base_fmodf( const float x, const float y ) {
108108
if ( hy < 0x00800000 ) {
109109
// subnormal y
110110
iy = STDLIB_CONSTANT_FLOAT32_MIN_BASE2_EXPONENT;
111-
for ( i = ( hy << 8 ); i >= 0; i <<= 1 ) {
111+
for ( i = ( hy << 8 ); i >= 0; i <<= 1 ) {
112112
iy -= 1;
113113
}
114114
} else iy = ( hy >> 23 ) - STDLIB_CONSTANT_FLOAT32_EXPONENT_BIAS;

0 commit comments

Comments
 (0)