diff options
author | Adam Heath <doogie@debian.org> | 2001-04-23 08:59:02 +0000 |
---|---|---|
committer | Adam Heath <doogie@debian.org> | 2001-04-23 08:59:02 +0000 |
commit | ea93ed48c17445d01b67f3fa8a20a5a644a89e5b (patch) | |
tree | 2883c9ea2b0833ef770fb5ff68fa18ba0acc2973 /lib/mlib.c | |
parent | ecb9054f73b151acfa0fa81f1e89ce85ce8350c4 (diff) | |
download | dpkg-ea93ed48c17445d01b67f3fa8a20a5a644a89e5b.tar.gz |
Fixed up several warning types: const, casting, incorrect sizes,
signed/unsigned comparisons.
Diffstat (limited to 'lib/mlib.c')
-rw-r--r-- | lib/mlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mlib.c b/lib/mlib.c index f64119319..5436424dd 100644 --- a/lib/mlib.c +++ b/lib/mlib.c @@ -225,7 +225,7 @@ ssize_t buffer_read(buffer_data_t data, void *buf, ssize_t length, const char *d } #define buffer_copy_setup_dual(name, type1, name1, type2, name2) \ -inline ssize_t buffer_copy_setup_##name(type1 n1, int typeIn, void *procIn,\ +ssize_t buffer_copy_setup_##name(type1 n1, int typeIn, void *procIn,\ type2 n2, int typeOut, void *procOut,\ ssize_t limit, const char *desc, ...)\ {\ |