ports/graphics/rawstudio/files/patch-src_rs-batch.c
Alexey Dokuchaev 92e06c2342 - Revivify and unbreak by fixing problematic code and
suppressing dreaded C++11 narrowing warnings/errors
- Convert to USES+=localbase and optimize away LIBS+=
- Remove excessive vertical whitespace from one patch
- Chase HTTP redirection in the WWW line of pkg-descr
2021-03-04 14:46:55 +00:00

11 lines
309 B
C

--- src/rs-batch.c.orig 2011-04-07 18:05:03 UTC
+++ src/rs-batch.c
@@ -830,7 +830,7 @@ static void
filetype_changed(gpointer active, gpointer user_data)
{
RS_QUEUE *queue = (RS_QUEUE *) user_data;
- GType filetype = GPOINTER_TO_INT(active);
+ GType filetype = (GType)active;
if (!filetype)
return;