]> err.no Git - dpkg/commitdiff
fmt can't be const since we free it in the same function
authorWichert Akkerman <wakkerma@debian.org>
Wed, 1 Aug 2001 13:10:50 +0000 (13:10 +0000)
committerWichert Akkerman <wakkerma@debian.org>
Wed, 1 Aug 2001 13:10:50 +0000 (13:10 +0000)
ChangeLog
main/query.c

index 1983d381697eb6f88539bf64ae838e9665208b0b..43356a777806d1658c41077cb3a71d541139f9b5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Aug  1 15:10:06 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
+
+  * main/query.c: fmt can't be const since we free it in the same function
+
 Tue Jul 31 12:26:41 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
 
   * po/de.po: Updated
index 58f5f821bc1b9d1d349caf179476aada04efbbcd..cd788e2d535eae9eb267b7d23567ebbb1585513b 100644 (file)
@@ -380,7 +380,7 @@ void showpackages(const char *const *argv) {
   struct pkginfo **pkgl;
   const char *thisarg;
   int np, i, found;
-  const struct lstitem* fmt = parseformat(showformat);
+  struct lstitem* fmt = parseformat(showformat);
 
   if (!fmt) {
     nerrs++;