From 1a8d9f2429591c07abbcde17c8105d1c7aea5e56 Mon Sep 17 00:00:00 2001 From: Samuel Serapion Date: Mon, 25 Aug 2008 23:57:51 +0000 Subject: [PATCH] Don't error on non-32bit builds. Still needs port. svn path=/branches/ros-amd64-bringup/; revision=35651 --- reactos/tools/widl/server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/tools/widl/server.c b/reactos/tools/widl/server.c index c866550240f..8dc1ebc2ecd 100644 --- a/reactos/tools/widl/server.c +++ b/reactos/tools/widl/server.c @@ -442,7 +442,7 @@ void write_server(ifref_list_t *ifaces) write_function_stubs(iface->iface, &proc_offset); print_server("#if !defined(__RPC_WIN32__)\n"); - print_server("#error Invalid build platform for this stub.\n"); + print_server("//#error Invalid build platform for this stub.\n"); print_server("#endif\n"); fprintf(server, "\n");