Skip to content

Commit

Permalink
another
Browse files Browse the repository at this point in the history
  • Loading branch information
jcupitt committed Oct 3, 2023
1 parent c54d3c7 commit 0c4fb3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dicom-file.c
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ static bool set_pixel_description(DcmError **error,
!dcm_element_get_value_integer(error, element, 0, &value)) {
return false;
}
desc->bits_stored = value;
desc->bits_stored = (uint16_t) value;

element = dcm_dataset_get(error, metadata, 0x00280103);
if (element == NULL ||
Expand Down

0 comments on commit 0c4fb3b

Please sign in to comment.