From b16de39417aad0393257370f52d05e07e362a9e2 Mon Sep 17 00:00:00 2001 From: Dan Hipschman Date: Tue, 18 Sep 2007 15:28:17 -0700 Subject: [PATCH] widl: Fix alignment comments. --- tools/widl/typegen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/widl/typegen.c b/tools/widl/typegen.c index 7851b77c652..71885c7e213 100644 --- a/tools/widl/typegen.c +++ b/tools/widl/typegen.c @@ -98,8 +98,8 @@ const char *string_of_type(unsigned char type) case RPC_FC_CARRAY: return "FC_CARRAY"; case RPC_FC_CVARRAY: return "FC_CVARRAY"; case RPC_FC_BOGUS_ARRAY: return "FC_BOGUS_ARRAY"; - case RPC_FC_ALIGNM4: return "RPC_FC_ALIGNM4"; - case RPC_FC_ALIGNM8: return "RPC_FC_ALIGNM8"; + case RPC_FC_ALIGNM4: return "FC_ALIGNM4"; + case RPC_FC_ALIGNM8: return "FC_ALIGNM8"; default: error("string_of_type: unknown type 0x%02x\n", type); return NULL;