Module: wine Branch: master Commit: b16de39417aad0393257370f52d05e07e362a9e2 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b16de39417aad0393257370f52... Author: Dan Hipschman <dsh(a)linux.ucla.edu> Date: Tue Sep 18 15:28:17 2007 -0700 widl: Fix alignment comments. --- tools/widl/typegen.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/widl/typegen.c b/tools/widl/typegen.c index 7851b77..71885c7 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;