Michael Stefaniuc : mscms: Don't produce unreachable code with #ifdef ( Smatch).

Alexandre Julliard julliard at winehq.org
Tue Oct 26 12:34:44 CDT 2010


Module: wine
Branch: master
Commit: 038fbe23cc2395ca21eb9da6a100a6cf7e2c4ee1
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=038fbe23cc2395ca21eb9da6a100a6cf7e2c4ee1

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Mon Oct 25 23:50:04 2010 +0200

mscms: Don't produce unreachable code with #ifdef (Smatch).

---

 dlls/mscms/transform.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/dlls/mscms/transform.c b/dlls/mscms/transform.c
index 48043a1..801ef4d 100644
--- a/dlls/mscms/transform.c
+++ b/dlls/mscms/transform.c
@@ -455,6 +455,7 @@ done:
     release_transform( transform );
     return ret;
 
-#endif /* HAVE_LCMS */
+#else  /* HAVE_LCMS */
     return FALSE;
+#endif /* HAVE_LCMS */
 }




More information about the wine-cvs mailing list