]> sourceware.org Git - glibc.git/commitdiff
crypt: Remove unused variable on cert test
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Fri, 25 Mar 2022 14:13:37 +0000 (11:13 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Thu, 31 Mar 2022 12:00:54 +0000 (09:00 -0300)
Checked on x86_64-linux-gnu and i686-linux-gnu.

crypt/cert.c

index e070ca398d97911de07553316766cf9ef537fc0e..32c4386caffd8da8971f05c78ea4aa162ee9327c 100644 (file)
@@ -50,10 +50,9 @@ main (int argc, char *argv[])
 {
        char key[64],plain[64],cipher[64],answer[64];
        int i;
-       int test;
        int fail;
 
-       for(test=0;!feof(stdin);test++){
+       for(;!feof(stdin);){
 
                get8(key);
                printf(" K: "); put8(key);
This page took 0.040909 seconds and 5 git commands to generate.