[PATCH] Fix Versions bracing

Franz Sirl Franz.Sirl-kernel@lauterbach.com
Wed Jan 3 10:57:00 GMT 2001


On Wednesday 03 January 2001 18:24, Andreas Jaeger wrote:
> Thanks,
>
> I've committed the patches now - a better check would really be fine,

With this little perl script:

--->
#!/usr/bin/perl
 
$cntl = 0;
$cntr = 0;
while (<>)
{
  $cntl = $cntl + ($_ =~ tr/\{//);
  $cntr = $cntr + ($_ =~ tr/\}//);
};
if ($cntl != $cntr)
{
  print STDERR "$cntl != $cntr\n";
  exit 1;
}
 
exit 0;
---<

and this command line:

	find -name Versions|xargs -n 1 --verbose perl ./chkVersionsBraces.pl

I only found one more.

Franz.

	* sysdeps/sparc/sparc64/soft-fp/Versions: Fix braces.



More information about the Libc-alpha mailing list