diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-12-17 14:03:31 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-12-17 14:03:31 +0200 |
commit | bad888114da54dd7b7eaf36faa34f0dfd4139432 (patch) | |
tree | 0ef757682ee7c21de3b4c82c928c1fb8a92af4a9 /lib/fsm.c | |
parent | b9f2b0788a19f76e89d782a76bc3d784fe4307d9 (diff) | |
download | rpm-bad888114da54dd7b7eaf36faa34f0dfd4139432.tar.gz rpm-bad888114da54dd7b7eaf36faa34f0dfd4139432.tar.bz2 rpm-bad888114da54dd7b7eaf36faa34f0dfd4139432.zip |
Drop bogus const from dnlFreeIterator() param
Diffstat (limited to 'lib/fsm.c')
-rw-r--r-- | lib/fsm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -232,7 +232,7 @@ typedef struct dnli_s { * @param a directory name iterator * @retval NULL always */ -static void * dnlFreeIterator(const void * a) +static void * dnlFreeIterator(void * a) { if (a) { DNLI_t dnli = (void *)a; |