CVSROOT: /sources/gnash Module name: gnash Changes by: Benjamin Wolsey <bwy> 08/01/16 17:19:56
Modified files: . : ChangeLog libbase : rc.cpp server/parser : video_stream_def.cpp Log message: * server/parser/video_stream_def.cpp: fix size_t format warning. * libbase/rc.cpp: fix variable name for OSX. Not that I've ever tried compiling Gnash for OSX, but with a typo like that evidently no one else has either. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.5416&r2=1.5417 http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/rc.cpp?cvsroot=gnash&r1=1.51&r2=1.52 http://cvs.savannah.gnu.org/viewcvs/gnash/server/parser/video_stream_def.cpp?cvsroot=gnash&r1=1.31&r2=1.32 Patches: Index: ChangeLog =================================================================== RCS file: /sources/gnash/gnash/ChangeLog,v retrieving revision 1.5416 retrieving revision 1.5417 diff -u -b -r1.5416 -r1.5417 --- ChangeLog 16 Jan 2008 17:14:03 -0000 1.5416 +++ ChangeLog 16 Jan 2008 17:19:55 -0000 1.5417 @@ -1,5 +1,7 @@ 2008-01-16 Benjamin Wolsey <[EMAIL PROTECTED]> + * server/parser/video_stream_def.cpp: fix size_t format warning. + * libbase/rc.cpp: fix variable name for OSX. * gui/gtk{sup.h,.cpp}: redesign preferences dialogue; send changes to rcfile (nothing gets saved yet, but some changes work without a restart). Index: libbase/rc.cpp =================================================================== RCS file: /sources/gnash/gnash/libbase/rc.cpp,v retrieving revision 1.51 retrieving revision 1.52 diff -u -b -r1.51 -r1.52 --- libbase/rc.cpp 27 Dec 2007 09:14:56 -0000 1.51 +++ libbase/rc.cpp 16 Jan 2008 17:19:55 -0000 1.52 @@ -103,7 +103,7 @@ _urlOpenerFormat = PrfQueryProfileString( HINI_USER, (PSZ) "WPURLDEFAULTSETTINGS", (PSZ) "DefaultBrowserExe", NULL, (PVOID) browserExe, (LONG)sizeof(browserExe) ); - _urlOPenerFormat += " -remote 'openurl(%u)'"; + _urlOpenerFormat += " -remote 'openurl(%u)'"; #endif // TODO: fetch GNASH_URLOPENER_FORMAT from the environment @@ -535,6 +535,7 @@ // GNASH_REPORT_FUNCTION; _verboseASCodingErrors = value; + if (value) { _verbosity++; } Index: server/parser/video_stream_def.cpp =================================================================== RCS file: /sources/gnash/gnash/server/parser/video_stream_def.cpp,v retrieving revision 1.31 retrieving revision 1.32 diff -u -b -r1.31 -r1.32 --- server/parser/video_stream_def.cpp 13 Dec 2007 16:19:47 -0000 1.31 +++ server/parser/video_stream_def.cpp 16 Jan 2008 17:19:56 -0000 1.32 @@ -16,7 +16,7 @@ // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA // -// $Id: video_stream_def.cpp,v 1.31 2007/12/13 16:19:47 strk Exp $ +// $Id: video_stream_def.cpp,v 1.32 2008/01/16 17:19:56 bwy Exp $ #include "video_stream_def.h" #include "video_stream_instance.h" @@ -99,7 +99,7 @@ unsigned int frameNum = in->read_u16(); // in->skip_bytes(2); if ( m->get_loading_frame() != frameNum ) { - log_debug("frameNum field in tag is %d, currently loading frame is %d, we'll use the latter.", + log_debug("frameNum field in tag is %d, currently loading frame is "SIZET_FMT", we'll use the latter.", frameNum, m->get_loading_frame()); frameNum = m->get_loading_frame(); } _______________________________________________ Gnash-commit mailing list Gnash-commit@gnu.org http://lists.gnu.org/mailman/listinfo/gnash-commit