aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server.c b/server.c
index 8496da7..793b9fc 100644
--- a/server.c
+++ b/server.c
@@ -296,11 +296,11 @@ WriteVarDecls(FILE *file, const routine_t *rt)
fprintf(file, "\n");
if (!rt->rtSimpleFixedReply)
- fprintf(file, "\tboolean_t msgh_simple;\n");
+ fprintf(file, "\tboolean_t msgh_simple = msgh_simple;\n");
else if (!rt->rtSimpleCheckRequest)
{
fprintf(file, "#if\tTypeCheck\n");
- fprintf(file, "\tboolean_t msgh_simple;\n");
+ fprintf(file, "\tboolean_t msgh_simple = msgh_simple;\n");
fprintf(file, "#endif\t/* TypeCheck */\n");
fprintf(file, "\n");
}