> I believe this patch solve the issues, bu using size_t for > non-negative values and casting the size_t argument to %d to (int).
> - g_print(" %d. Video Test Source (videotestsrc)\n", i);
> + g_print(" %d. Video Test Source (videotestsrc)\n",
> (int)i);
We shouldn't be using things like g_print. Either including log.h and
using log_debug, or C++ iostreams would fix this particular line.
bwy
--
--
Free Flash, use Gnash
http://www.gnu.org/software/gnash/
Benjamin Wolsey, Software Developer - http://benjaminwolsey.de
C++ and Open-Source Flash blog - http://www.benjaminwolsey.de/bwysblog
xmpp:[email protected]
http://identi.ca/bwy
signature.asc
Description: This is a digitally signed message part
_______________________________________________ Gnash-dev mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gnash-dev

