소스 검색

Fix one format string

* scripts/dpkg-parsechangelog.pl: Remove one superfluous
%s from a formatstring which was used to output $! before
syserr() was used instead.
Frank Lichtenheld 18 년 전
부모
커밋
0a9be93dfd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      scripts/dpkg-parsechangelog.pl

+ 1 - 1
scripts/dpkg-parsechangelog.pl

@@ -117,7 +117,7 @@ defined($pf) || error(_g("format %s unknown"), $pa);
 
 if ($changelogfile ne "-") {
     open(STDIN,"<", $changelogfile)
-	|| syserr(_g("cannot open %s: %s"), $changelogfile);
+	|| syserr(_g("cannot open %s"), $changelogfile);
 }
 exec($pf,@ap) || syserr(_g("cannot exec format parser: %s"));