change log for rtems-testing (2011-11-04)
Ralf Corsepius
ralf.corsepius at rtems.org
Fri Nov 4 16:27:44 UTC 2011
On 11/04/2011 05:10 PM, rtems-vc at rtems.org wrote:
> *joel*
>
> 2011-11-04 Joel Sherrill<joel.sherrill at oarcorp.com>
> diff -u rtems-testing/covoar/covoar.cc:1.4 rtems-testing/covoar/covoar.cc:1.5
> --- rtems-testing/covoar/covoar.cc:1.4 Sun Aug 21 11:00:07 2011
> +++ rtems-testing/covoar/covoar.cc Fri Nov 4 11:02:36 2011
> @@ -348,7 +348,7 @@
> SymbolsToAnalyze->load( symbolsFile );
> if (Verbose)
> fprintf(
> - stderr, "Analyzing %d symbols\n", SymbolsToAnalyze->set.size()
> + stderr, "Analyzing %ld symbols\n", SymbolsToAnalyze->set.size()
> );
Presuming set.size() returns a size_t (C) or variant of size_type (C++),
this is nonportable. You'll likely will want to use "%zd".
Ralf
More information about the vc
mailing list