diff options
author | Jim Meyering <jim@meyering.net> | 1997-07-15 14:05:07 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-07-15 14:05:07 +0000 |
commit | f574936f77ec026c1e8e59438f3a582b33c2dbcc (patch) | |
tree | cb3a2bb448ecab4b007e2c89e09f311fafad2246 /lib | |
parent | 8abf2733e005a816eefaf61902be15199f14e6d1 (diff) | |
download | coreutils-f574936f77ec026c1e8e59438f3a582b33c2dbcc.tar.xz |
correct cpp-indentation
Diffstat (limited to 'lib')
-rw-r--r-- | lib/getloadavg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/getloadavg.c b/lib/getloadavg.c index 52958d4d5..3d81bdd96 100644 --- a/lib/getloadavg.c +++ b/lib/getloadavg.c @@ -281,7 +281,7 @@ extern int errno; /* Sometimes both MIPS and sgi are defined, so FSCALE was just defined above under #ifdef MIPS. But we want the sgi value. */ # undef FSCALE -# define FSCALE 1000.0 +# define FSCALE 1000.0 # endif # if defined (ardent) && defined (titan) @@ -299,7 +299,7 @@ extern int errno; # endif /* Not FSCALE. */ # if !defined (LDAV_CVT) && defined (FSCALE) -# define LDAV_CVT(n) (((double) (n)) / FSCALE) +# define LDAV_CVT(n) (((double) (n)) / FSCALE) # endif /* VAX C can't handle multi-line #ifs, or lines longer that 256 characters. */ |