Commit 45028701 authored by Martin Blix Grydeland's avatar Martin Blix Grydeland

Silence compiler warning about possibly uninitialized variables.

parent c723806d
......@@ -72,8 +72,8 @@ static int
vslq_test_rec(const struct vex *vex, const struct VSLC_ptr *rec)
{
const struct vex_rhs *rhs;
long long lhs_int;
double lhs_float;
long long lhs_int = 0;
double lhs_float = 0.;
const char *b, *e;
char *p;
int i;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment