Changeset 644 in MondoRescue for branches


Ignore:
Timestamp:
Jun 8, 2006, 12:15:46 AM (18 years ago)
Author:
bcornec
Message:

printf causes problem with % => print in tools/mkchangelog.pl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0.8/tools/mkchangelog.pl

    r642 r644  
    6363    #print "**$ndate**\n";
    6464    if ($dtype eq "rpm") {
    65         printf OUTPUT "* $ndate Bruno Cornec <bruno\@mondorescue.org> $ver\n";
    66         printf OUTPUT "- Updated to $ver\n";
     65        print OUTPUT "* $ndate Bruno Cornec <bruno\@mondorescue.org> $ver\n";
     66        print OUTPUT "- Updated to $ver\n";
    6767
    6868        $tmp = <INPUT>;
    6969        while ($tmp !~ /^$/) {
    70             printf OUTPUT $tmp;
     70            print OUTPUT $tmp;
    7171            $tmp = <INPUT>;
    7272        }
    73         printf OUTPUT "\n";
     73        print OUTPUT "\n";
    7474    }
    7575}
Note: See TracChangeset for help on using the changeset viewer.