diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-11 17:30:47 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-15 20:04:21 +0100 |
commit | 7ec91df9f79e3aa1ded51e5b859dbfa67049ad7b (patch) | |
tree | 3f894b78cbfb718795f0c8cb86d493f21d6c96dc /server.c | |
parent | 23567fa69eee5ddf311672867818771b27c2a27d (diff) | |
download | mig-7ec91df9f79e3aa1ded51e5b859dbfa67049ad7b.tar.gz mig-7ec91df9f79e3aa1ded51e5b859dbfa67049ad7b.tar.bz2 mig-7ec91df9f79e3aa1ded51e5b859dbfa67049ad7b.zip |
mig/server.c (WriteVarDecls): quiet GCC warning about set but unused variable
This is again that code where variable is assigned to itself, but
I don't know how to fix this the other way.
* server.c (WriteVarDecls) (msgh_simple): Assign to itself.
Diffstat (limited to 'server.c')
-rw-r--r-- | server.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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"); } |