diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-01-11 15:21:53 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-01-11 15:21:53 +0000 |
commit | a9aa9d58524fd95b1babe4a47308b126899c1113 (patch) | |
tree | 6e2645fb5f4523ab27a0b853d3062f0e7eb56c76 | |
parent | f3e691cf556bd4ad1338f222ffcf5eaecafd6a24 (diff) | |
download | xine-lib-a9aa9d58524fd95b1babe4a47308b126899c1113.tar.gz xine-lib-a9aa9d58524fd95b1babe4a47308b126899c1113.tar.bz2 |
Correct the prototype of rmff_dump_header. (Build fix.)
-rw-r--r-- | src/input/libreal/rmff.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/libreal/rmff.h b/src/input/libreal/rmff.h index 5288fc558..b03d12b1b 100644 --- a/src/input/libreal/rmff.h +++ b/src/input/libreal/rmff.h @@ -251,7 +251,7 @@ int rmff_get_header_size(rmff_header_t *h); /* * dumps the header <h> to <buffer>. <max> is the size of <buffer> */ -int rmff_dump_header(rmff_header_t *h, char *buffer, int max); +int rmff_dump_header(rmff_header_t *h, void *buf_gen, int max); /* * dumps a packet header |