search for: bbdce1d

Displaying 2 results from an estimated 2 matches for "bbdce1d".

Did you mean: b77ce1d
2007 Oct 11
1
[PATCH] Fix compiler warnings that prevent compilation
...DEC_LOG ("-%4u bytes, total %7u (%7u since GC)", bytes, + SWFDEC_LOG ("-%4zu bytes, total %7zu (%7zu since GC)", bytes, context->memory, context->memory_since_gc); } diff --git a/libswfdec/swfdec_as_native_function.h b/libswfdec/swfdec_as_native_function.h index bbdce1d..88c172d 100644 --- a/libswfdec/swfdec_as_native_function.h +++ b/libswfdec/swfdec_as_native_function.h @@ -86,7 +86,7 @@ gboolean swfdec_as_native_function_checkv(SwfdecAsContext * cx, const char * args, va_list varargs); #define SWFDEC_AS_CHECK(type,result,...) G_STMT_STA...
2007 Oct 11
0
libswfdec/swfdec_as_native_function.h
...ix a compiler warning when using SWFDEC_AS_CHECK Avoid casting to (gpointer *) in SWFDEC_AS_CHECK definition. Casting to (gpointer) is sufficient and avoids warnings about strict aliasing. diff --git a/libswfdec/swfdec_as_native_function.h b/libswfdec/swfdec_as_native_function.h index bbdce1d..88c172d 100644 --- a/libswfdec/swfdec_as_native_function.h +++ b/libswfdec/swfdec_as_native_function.h @@ -86,7 +86,7 @@ gboolean swfdec_as_native_function_check const char * args, va_list varargs); #define SWFDEC_AS_CHECK(type,result,...) G_STMT_START {\ - if (!swfdec_as...