877453059c
The locally defined prototype for jpeg_mem_src() was different from the on defined in /usr/include/jpeglib.h
22 lines
716 B
Diff
22 lines
716 B
Diff
--- camlibs/ax203/jpeg_memsrcdest.h 2015-08-08 17:57:29.000000000 +0200
|
|
+++ camlibs/ax203/jpeg_memsrcdest.h 2016-06-16 10:41:12.793951660 +0200
|
|
@@ -1,7 +1,7 @@
|
|
#include <jpeglib.h>
|
|
|
|
void
|
|
-jpeg_mem_src (j_decompress_ptr cinfo, unsigned char * buffer,
|
|
+jpeg_mem_src (j_decompress_ptr cinfo, const unsigned char * buffer,
|
|
unsigned long bufsize);
|
|
|
|
void
|
|
--- camlibs/jl2005c/jpeg_memsrcdest.h 2015-08-08 17:57:29.000000000 +0200
|
|
+++ camlibs/jl2005c/jpeg_memsrcdest.h 2016-06-16 10:41:12.793951660 +0200
|
|
@@ -1,7 +1,7 @@
|
|
#include <jpeglib.h>
|
|
|
|
void
|
|
-jpeg_mem_src (j_decompress_ptr cinfo, unsigned char * buffer,
|
|
+jpeg_mem_src (j_decompress_ptr cinfo, const unsigned char * buffer,
|
|
unsigned long bufsize);
|
|
|
|
void
|