X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fvariable.c;h=6c1414832b7c992fe5301940a80e33aca794b29d;hb=573068f2bdcd3f8796e9646668fed910a90f890b;hp=3c170c842c943fddd2039d8932543fb1849eebee;hpb=745a5487c9da077893a46d26d64e911246640a7b;p=pspp-builds.git diff --git a/src/data/variable.c b/src/data/variable.c index 3c170c84..6c141483 100644 --- a/src/data/variable.c +++ b/src/data/variable.c @@ -131,6 +131,7 @@ hash_value(const union value *v, int width) bool var_is_valid_name (const char *name, bool issue_error) { + bool plausible; size_t length, i; assert (name != NULL); @@ -139,7 +140,7 @@ var_is_valid_name (const char *name, bool issue_error) CHARACTERS */ length = strlen (name); - bool plausible = var_is_plausible_name(name, issue_error); + plausible = var_is_plausible_name(name, issue_error); if ( ! plausible ) return false;