mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Match sizeof with pointer type
More to get clang-scan to quiet down that for the unlikely event that unsigned int and int is different sizes. Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
6c0865c532
commit
c46ae27c3b
1 changed files with 2 additions and 2 deletions
|
@ -438,11 +438,11 @@ static unsigned int *sort_stops(unsigned int *dstops, int dnr, struct gaschanges
|
||||||
{
|
{
|
||||||
int i, gi, di;
|
int i, gi, di;
|
||||||
int total = dnr + gnr;
|
int total = dnr + gnr;
|
||||||
unsigned int *stoplevels = malloc(total * sizeof(int));
|
unsigned int *stoplevels = malloc(total * sizeof(unsigned int));
|
||||||
|
|
||||||
/* no gaschanges */
|
/* no gaschanges */
|
||||||
if (gnr == 0) {
|
if (gnr == 0) {
|
||||||
memcpy(stoplevels, dstops, dnr * sizeof(int));
|
memcpy(stoplevels, dstops, dnr * sizeof(unsigned int));
|
||||||
return stoplevels;
|
return stoplevels;
|
||||||
}
|
}
|
||||||
i = total - 1;
|
i = total - 1;
|
||||||
|
|
Loading…
Reference in a new issue