summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2013-09-04 17:18:41 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-09-04 23:58:32 +0200
commitb53836447df7230cd5665a7ccabd2a6e1a6607e5 (patch)
tree49fbde23da1895a9f0a4d8583057c4c57d73851c
parent3040e276779acb6cbf6dbf4be24600c37c6f75ae (diff)
Drop the auto keyword
Drop the auto keyword from the generated source code. auto is the default storage type for variables anyway and it is customary to omit it. * utils.c (WriteCheckDecl): Drop auto from generated source. (WriteStaticLongDecl): Likewise. (WriteStaticShortDecl): Likewise.
-rw-r--r--utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils.c b/utils.c
index 4feb874..6c42bc3 100644
--- a/utils.c
+++ b/utils.c
@@ -181,7 +181,7 @@ WriteCheckDecl(FILE *file, const argument_t *arg)
Note we use itOutNameStr instead of itInNameStr, because
this declaration will be used to check received types. */
- fprintf(file, "\tauto const mach_msg_type_t %sCheck = {\n",
+ fprintf(file, "\tconst mach_msg_type_t %sCheck = {\n",
arg->argVarName);
fprintf(file, "\t\t/* msgt_name = */\t\t%s,\n", it->itOutNameStr);
fprintf(file, "\t\t/* msgt_size = */\t\t%d,\n", it->itSize);
@@ -261,7 +261,7 @@ static void
WriteStaticLongDecl(FILE *file, const ipc_type_t *it,
dealloc_t dealloc, boolean_t inname, identifier_t name)
{
- fprintf(file, "\tauto const mach_msg_type_long_t %s = {\n", name);
+ fprintf(file, "\tconst mach_msg_type_long_t %s = {\n", name);
fprintf(file, "\t{\n");
fprintf(file, "\t\t/* msgt_name = */\t\t0,\n");
fprintf(file, "\t\t/* msgt_size = */\t\t0,\n");
@@ -284,7 +284,7 @@ static void
WriteStaticShortDecl(FILE *file, const ipc_type_t *it,
dealloc_t dealloc, boolean_t inname, identifier_t name)
{
- fprintf(file, "\tauto const mach_msg_type_t %s = {\n", name);
+ fprintf(file, "\tconst mach_msg_type_t %s = {\n", name);
fprintf(file, "\t\t/* msgt_name = */\t\t%s,\n",
inname ? it->itInNameStr : it->itOutNameStr);
fprintf(file, "\t\t/* msgt_size = */\t\t%d,\n", it->itSize);