summaryrefslogtreecommitdiff
path: root/libopenjpeg/cio.h
diff options
context:
space:
mode:
authorFrancois-Olivier Devaux <fodevaux@users.noreply.github.com>2005-05-26 12:07:46 +0000
committerFrancois-Olivier Devaux <fodevaux@users.noreply.github.com>2005-05-26 12:07:46 +0000
commit7e518596e03caf8f2793697dcbe1d9f70f949de0 (patch)
tree34026fce51374d544b7b74aed72cfe3f302efebe /libopenjpeg/cio.h
parentf9eb8f93c29679657d539b8d17e56d889d816a2e (diff)
cio_read_to_buf(...) and cio_write_from_buf(...) functions syntax modification
Diffstat (limited to 'libopenjpeg/cio.h')
-rw-r--r--libopenjpeg/cio.h4
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