> > - plugins.cpp line 685
15 is correct if you count them, or rather 13+(pageurl?2:0) to be pernickety.
BTW I would have thought that
argv[argc++] = "-r 3";
should be
argv[argc++] = "-r3";
or
argv[argc++] = "-r";
argv[argc++] = "3";
If it works, then I guess where it's parsed in gnash.cpp,
case 'r':
{
long int render_arg = strtol(optarg, NULL, 0);
strtol lets you get away with it, but I wouldn't want to count on the
being portable.
The final assertion is there to catch coding errors.
And just as well!
M
_______________________________________________
Gnash mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnash