diff options
| author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-07-15 11:29:05 +0200 | 
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-07-15 11:29:05 +0200 | 
| commit | 324a8a71bb7d9e4f8bc49b6bc47efaf9fb58282e (patch) | |
| tree | bd2d48a139bfbe869f4f49359b63097931a45e7b /backend/coolscan3.c | |
| parent | 2ca8a81bd0d99fe4d75c229d0e988d8ef710285f (diff) | |
| parent | 1edb02101a9306fc711cd422ed507d18165b1691 (diff) | |
Merge branch 'release/experimental/1.0.27-1_experimental1'experimental/1.0.27-1_experimental1
Diffstat (limited to 'backend/coolscan3.c')
| -rw-r--r-- | backend/coolscan3.c | 18 | 
1 files changed, 9 insertions, 9 deletions
diff --git a/backend/coolscan3.c b/backend/coolscan3.c index a1d6fe6..42814d1 100644 --- a/backend/coolscan3.c +++ b/backend/coolscan3.c @@ -290,7 +290,7 @@ static SANE_Status cs3_convert_options(cs3_t * s);  static SANE_Status cs3_scan(cs3_t * s, cs3_scan_t type);  static void *cs3_xmalloc(size_t size);  static void *cs3_xrealloc(void *p, size_t size); -static void cs3_xfree(const void *p); +static void cs3_xfree(void *p);  /* ========================================================================= */ @@ -332,9 +332,9 @@ sane_exit(void)  	DBG(10, "%s\n", __func__);  	for (i = 0; i < n_device_list; i++) { -		cs3_xfree(device_list[i]->name); -		cs3_xfree(device_list[i]->vendor); -		cs3_xfree(device_list[i]->model); +		cs3_xfree((void *)device_list[i]->name); +		cs3_xfree((void *)device_list[i]->vendor); +		cs3_xfree((void *)device_list[i]->model);  		cs3_xfree(device_list[i]);  	}  	cs3_xfree(device_list); @@ -1969,9 +1969,9 @@ cs3_open(const char *device, cs3_interface_t interface, cs3_t ** sp)  		device_list[n_device_list]->type = "film scanner";  		if (alloc_failed) { -			cs3_xfree(device_list[n_device_list]->name); -			cs3_xfree(device_list[n_device_list]->vendor); -			cs3_xfree(device_list[n_device_list]->model); +			cs3_xfree((void *)device_list[n_device_list]->name); +			cs3_xfree((void *)device_list[n_device_list]->vendor); +			cs3_xfree((void *)device_list[n_device_list]->model);  			cs3_xfree(device_list[n_device_list]);  		} else  			n_device_list++; @@ -3181,8 +3181,8 @@ cs3_xrealloc(void *p, size_t size)  }  static void -cs3_xfree(const void *p) +cs3_xfree(void *p)  {  	if (p) -		free(p); +          free(p);  }  | 
