diff options
| author | Francois-Olivier Devaux <fodevaux@users.noreply.github.com> | 2005-05-26 12:07:46 +0000 |
|---|---|---|
| committer | Francois-Olivier Devaux <fodevaux@users.noreply.github.com> | 2005-05-26 12:07:46 +0000 |
| commit | 7e518596e03caf8f2793697dcbe1d9f70f949de0 (patch) | |
| tree | 34026fce51374d544b7b74aed72cfe3f302efebe /libopenjpeg/cio.h | |
| parent | f9eb8f93c29679657d539b8d17e56d889d816a2e (diff) | |
cio_read_to_buf(...) and cio_write_from_buf(...) functions syntax modification
Diffstat (limited to 'libopenjpeg/cio.h')
| -rw-r--r-- | libopenjpeg/cio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libopenjpeg/cio.h b/libopenjpeg/cio.h index e24f77d1..8bf1deee 100644 --- a/libopenjpeg/cio.h +++ b/libopenjpeg/cio.h @@ -97,11 +97,11 @@ void cio_skip(int n); /* * Read n bytes, copy to buffer */ -void cio_read_to_buf(unsigned char* buf, int n);/* Glenn Pearson adds */ +void cio_read_to_buf(unsigned char* src_buf, int n);/* Glenn Pearson adds */ /* * Write n bytes, copy from buffer */ -void cio_write_from_buf(unsigned char* buf, int n);/* Glenn Pearson adds */ +void cio_write_from_buf(unsigned char* dest_buf, int n);/* Glenn Pearson adds */ #endif |
