Module Name:    src
Committed By:   joerg
Date:           Mon Mar 24 22:39:06 UTC 2014

Modified Files:
        src/external/gpl3/gcc/dist/libgcc: unwind-dw2.c

Log Message:
Cast context->ldsa to the correct return type.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gcc/dist/libgcc/unwind-dw2.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/dist/libgcc/unwind-dw2.c
diff -u src/external/gpl3/gcc/dist/libgcc/unwind-dw2.c:1.2 src/external/gpl3/gcc/dist/libgcc/unwind-dw2.c:1.3
--- src/external/gpl3/gcc/dist/libgcc/unwind-dw2.c:1.2	Mon Mar 24 21:26:01 2014
+++ src/external/gpl3/gcc/dist/libgcc/unwind-dw2.c	Mon Mar 24 22:39:06 2014
@@ -368,7 +368,7 @@ _Unwind_SetIP (struct _Unwind_Context *c
 _Unwind_Ptr
 _Unwind_GetLanguageSpecificData (struct _Unwind_Context *context)
 {
-  return context->lsda;
+  return (_Unwind_Ptr) context->lsda;
 }
 
 _Unwind_Ptr

Reply via email to