]> err.no Git - dpkg/commitdiff
libdpkg: Remove unneeded 'const char *' cast
authorGuillem Jover <guillem@debian.org>
Mon, 30 Jun 2008 04:02:39 +0000 (07:02 +0300)
committerGuillem Jover <guillem@debian.org>
Mon, 30 Jun 2008 04:08:35 +0000 (07:08 +0300)
ChangeLog
lib/showpkg.c

index f549aefebcd9d85db37d5fdee323940af2cb7c4d..15f57b7839e83b4af3d2338278508a67aad38dc1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-06-30  Guillem Jover  <guillem@debian.org>
+
+       * lib/showpkg.c (parsefield): Remove unneeded 'const char *' cast.
+
 2008-06-30  Guillem Jover  <guillem@debian.org>
 
        * lib/dpkg-db.h (struct arbitraryfield): Make all 'char *' members
index 85672e4c3e1d877cf9a08583dbdad0c1271cfe98..61a30e3185ebc93fa3800ee64399b27cd3a96d65 100644 (file)
@@ -60,7 +60,7 @@ static int parsefield(struct lstitem* cur, const char* fmt, const char* fmtend)
 
        len=fmtend-fmt+1;
 
-       ws=(const char*)memchr(fmt, ';', len);
+       ws = memchr(fmt, ';', len);
        if (ws) {
                char* endptr;
                long w;