trandcounts.c: remove unused variable - numtools - perform numerical operations on vectors and matrices in unix pipes
 (HTM) git clone git://src.adamsgaard.dk/numtools
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 19cc9e1694767e6534501210180a9e8882fb85ca
 (DIR) parent 3754eed5a3af82a84848f545bd45adc8193b17c3
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Mon,  9 May 2022 15:08:40 +0200
       
       randcounts.c: remove unused variable
       
       Diffstat:
         M randcounts.c                        |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/randcounts.c b/randcounts.c
       t@@ -21,7 +21,7 @@ usage(void)
        int
        main(int argc, char *argv[])
        {
       -        int i, ret, s = 0, N;
       +        int i, s = 0, N;
                long j, seed, *counts = NULL, n = 1, r, repeats = 1;
                double val = 0.0, weightsum = 0.0, *weights = NULL;
                struct timeval t1;