Skip to content

Commit

Permalink
build: introduce explicit cast for c++
Browse files Browse the repository at this point in the history
  • Loading branch information
hanatos committed Jan 16, 2024
1 parent f746ddf commit 2bb5e04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pipe/metadata.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ dt_metadata_remove(
dt_image_metadata_t *rem)
{
if(meta == rem) return rem->next;
meta->next = dt_metadata_remove(meta->next, rem);
meta->next = dt_metadata_remove((dt_image_metadata_t *)meta->next, rem);
return meta;
}

0 comments on commit 2bb5e04

Please sign in to comment.