From d560b7bbb07980cec575a890f328f3baff8650d0 Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Tue, 11 Nov 2008 13:06:43 +0800 Subject: [PATCH] widl: Make the generated string pointers const as well. --- tools/widl/typegen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/widl/typegen.c b/tools/widl/typegen.c index 5a6e59264b9..775bef68a55 100644 --- a/tools/widl/typegen.c +++ b/tools/widl/typegen.c @@ -3348,7 +3348,7 @@ void write_endpoints( FILE *f, const char *prefix, const str_list_t *list ) const char *p; /* this should be an array of RPC_PROTSEQ_ENDPOINT but we want const strings */ - print_file( f, 0, "static const unsigned char * %s__RpcProtseqEndpoint[][2] =\n{\n", prefix ); + print_file( f, 0, "static const unsigned char * const %s__RpcProtseqEndpoint[][2] =\n{\n", prefix ); LIST_FOR_EACH_ENTRY( endpoint, list, const struct str_list_entry_t, entry ) { print_file( f, 1, "{ (const unsigned char *)\"" ); -- 2.11.4.GIT