Skip to content

Commit a481f6d

Browse files
authored
style: fix indentation
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent c22f02b commit a481f6d

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/pareto-type1/skewness/examples/c

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/pareto-type1/skewness/examples/c/example.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
#include <stdio.h>
2222

2323
static double random_uniform( const double min, const double max ) {
24-
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
25-
return min + ( v*(max-min) );
24+
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
25+
return min + ( v*(max-min) );
2626
}
2727

2828
int main( void ) {

0 commit comments

Comments
 (0)