20 lines
645 B
Diff
20 lines
645 B
Diff
diff -ru DevIL/DevIL/src-IL/src/il_jp2.cpp DevILb/DevIL/src-IL/src/il_jp2.cpp
|
|
--- DevIL/DevIL/src-IL/src/il_jp2.cpp 2017-01-02 01:03:56.000000000 +0100
|
|
+++ DevILb/DevIL/src-IL/src/il_jp2.cpp 2021-03-20 09:25:11.500686387 +0100
|
|
@@ -314,13 +314,13 @@
|
|
|
|
|
|
|
|
-static int iJp2_file_read(jas_stream_obj_t *obj, char *buf, int cnt)
|
|
+static int iJp2_file_read(jas_stream_obj_t *obj, char *buf, unsigned int cnt)
|
|
{
|
|
obj;
|
|
return iread(buf, 1, cnt);
|
|
}
|
|
|
|
-static int iJp2_file_write(jas_stream_obj_t *obj, char *buf, int cnt)
|
|
+static int iJp2_file_write(jas_stream_obj_t *obj, const char *buf, unsigned int cnt)
|
|
{
|
|
obj;
|
|
return iwrite(buf, 1, cnt);
|