+2007-11-29 Guillem Jover <guillem@debian.org>
+
+ * scripts/dpkg-gencontrol.pl (spfileslistvalue): Add prototype. Move
+ to the top of the file with the other functions.
+
2007-11-29 Guillem Jover <guillem@debian.org>
* src/main.c (log_file): Move definition to ...
"), $progname;
}
+sub spfileslistvalue($)
+{
+ my $r = $spvalue{$_[0]};
+ $r = '-' if !defined($r);
+ return $r;
+}
+
while (@ARGV) {
$_=shift(@ARGV);
syserr(_g("cannot install output control file \`%s'"), $cf);
}
-sub spfileslistvalue {
- my $r = $spvalue{$_[0]};
- $r = '-' if !defined($r);
- return $r;
-}