From 3d90a324294ba440e73081c8fb955fa3cef93b6a Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 2 Oct 2001 11:49:55 +0000 Subject: [PATCH] sch isn't an array, how did this pass through gcc? --- apps/speed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/speed.c b/apps/speed.c index 45df8aa91b..aeb2fa7fd7 100644 --- a/apps/speed.c +++ b/apps/speed.c @@ -839,7 +839,7 @@ int MAIN(int argc, char **argv) Time_F(START,usertime); for (i=count; i; i--) des_ecb_encrypt(buf_as_des_cblock,buf_as_des_cblock, - &(sch[0]),DES_ENCRYPT); + &sch,DES_ENCRYPT); d=Time_F(STOP,usertime); } while (d <3); save_count=count; -- 2.40.0