This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project wmaker-crm.git.

The branch, next has been updated
       via  39fdb451ba6ff84430507e327fa01a43f40b7315 (commit)
      from  244b63e6b5bd039980aa0ea2ac8cbd6ca27b9fdf (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://repo.or.cz/w/wmaker-crm.git/commit/39fdb451ba6ff84430507e327fa01a43f40b7315

commit 39fdb451ba6ff84430507e327fa01a43f40b7315
Author: Christophe CURIS <christophe.cu...@free.nospam.fr>
Date:   Sat Apr 21 14:01:27 2012 +0200

    Fixed wrong structure declaration
    
    The declaration of the structure actually also created an unused variable. 
This
    variable was not used anywhere, and lead to symbol defined in multiple 
objects.
    These symbol are silently merged by GCC, thus no problem was reported.
    
    The issue was raised by Yves de Champlain when trying to compile with 
LLVM/clang
    which is a bit stricter there.

diff --git a/WINGs/WINGs/WINGsP.h b/WINGs/WINGs/WINGsP.h
index a619a70..33aa87a 100644
--- a/WINGs/WINGs/WINGsP.h
+++ b/WINGs/WINGs/WINGsP.h
@@ -122,7 +122,7 @@ typedef struct W_DragDestinationInfo {
 } W_DragDestinationInfo;
 
 
-struct W_DraggingInfo {
+typedef struct W_DraggingInfo {
     unsigned char protocolVersion; /* version supported on the other side */
     Time timestamp;
 

-----------------------------------------------------------------------

Summary of changes:
 WINGs/WINGs/WINGsP.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


repo.or.cz automatic notification. Contact project admin crma...@gmail.com
if you want to unsubscribe, or site admin ad...@repo.or.cz if you receive
no reply.
-- 
wmaker-crm.git ("The Window Maker window manager")


-- 
To unsubscribe, send mail to wmaker-dev-unsubscr...@lists.windowmaker.org.

Reply via email to