summaryrefslogtreecommitdiffstats
path: root/test/bioprinttest.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-05-27 14:59:47 +0100
committerMatt Caswell <matt@openssl.org>2016-05-27 14:59:47 +0100
commitec91f92ddf74bea473148674aff25410311edaab (patch)
tree944e81ff3f3adb41e26142c148b6304a3c1f7004 /test/bioprinttest.c
parentf8f686ec1cda6a077ec9d5c2ab540cf202059279 (diff)
Silence some "may be uninitialized when used" warning
Clang was complaining about some variables possibly being uninitialized when used. The warnings are bogus, but clang can't figure that out. This silences the warnings. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'test/bioprinttest.c')
-rw-r--r--test/bioprinttest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/bioprinttest.c b/test/bioprinttest.c
index d376cfb8e0..c69a79c419 100644
--- a/test/bioprinttest.c
+++ b/test/bioprinttest.c
@@ -92,7 +92,7 @@ static void dofptest(int test, double val, char *width, int prec, int *fail)
int i;
for (i = 0; i < 5; i++) {
- char *fspec;
+ char *fspec = NULL;
switch (i) {
case 0:
fspec = "e";
@@ -143,8 +143,8 @@ int main(int argc, char **argv)
int test = 0;
int i;
int fail = 0;
- int prec;
- char *width;
+ int prec = -1;
+ char *width = "";
const double frac = 2.0/3.0;
char buf[80];