mirror of https://github.com/FreeRDP/FreeRDP
Fixed callback function return
This commit is contained in:
parent
90251f5e0d
commit
00b8d802d2
|
@ -45,7 +45,7 @@ static void my_init_source(j_decompress_ptr cinfo)
|
|||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
static BOOL my_fill_input_buffer(j_decompress_ptr cinfo)
|
||||
static boolean my_fill_input_buffer(j_decompress_ptr cinfo)
|
||||
{
|
||||
struct mydata_decomp* md;
|
||||
|
||||
|
@ -61,7 +61,7 @@ static void my_skip_input_data(j_decompress_ptr cinfo, long num_bytes)
|
|||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
static BOOL my_resync_to_restart(j_decompress_ptr cinfo, int desired)
|
||||
static boolean my_resync_to_restart(j_decompress_ptr cinfo, int desired)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue