]> err.no Git - dpkg/commitdiff
initialize otherpriority with 0, not an int.
authorAdam Heath <doogie@debian.org>
Fri, 20 Apr 2001 23:41:57 +0000 (23:41 +0000)
committerAdam Heath <doogie@debian.org>
Fri, 20 Apr 2001 23:41:57 +0000 (23:41 +0000)
ChangeLog
lib/database.c

index 8417481dc25d4086b68c460addbb61a069146125..59bd8a2ae171ce97adca6c58fe1e651e04008acb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Apr 20 18:18:20 CDT 2001 Adam Heath <doogie@debian.org>
+
+  * lib/database.c: initialize otherpriority with 0, not an int.
+
 Sat Apr 21 00:43:41 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
 
   * lib/parse.c: swap order for %.*s formats
index 21a19fa7efeea7f54ecae2468aa3d547b4674b39..a70b79ccad624c2e4d604b001f67d9668ca02a46 100644 (file)
@@ -117,7 +117,7 @@ void blankpackage(struct pkginfo *pigp) {
   pigp->eflag= eflagv_ok;
   pigp->want= want_unknown;
   pigp->priority= pri_unknown;
-  pigp->otherpriority = pri_unknown;
+  pigp->otherpriority = 0;
   pigp->section= 0;
   blankversion(&pigp->configversion);
   pigp->files= 0;