commit | 185962114a210a92f48191ee52e1d8ba69a2928c | [log] [tgz] |
---|---|---|
author | Alfred Klomp <git@alfredklomp.com> | Mon Jul 14 22:10:14 2014 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Thu Oct 23 15:35:39 2014 +0200 |
tree | fb273df1b4722e140c4f07928a28728b3196c923 | |
parent | ec99373df6eeee8c8d1d868518e21dfaa73992c8 [diff] |
ssl_test.c: remove dead store, assign at declaration Found with Clang's `scan-build` tool. The store to `ret` is not used, it's overwritten shortly after. Assign the value of 1 at declaration time instead to silence scan-build.