Skip to content

Commit b0a83a8

Browse files
authored
Merge pull request #2 from bgilbert/tags
meson: apply `bin` tag to tools
2 parents f51a0c8 + 679ab2a commit b0a83a8

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

include/dicom/dicom.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ typedef enum _DcmVR {
461461
* DCM_CLASS_BINARY -- an uninterpreted array of bytes, length in the
462462
* element header
463463
*
464-
* DCM_CLASS_SEQUENCE -- Value Representation is a seqeunce
464+
* DCM_CLASS_SEQUENCE -- Value Representation is a sequence
465465
*/
466466
typedef enum _DcmVRClass {
467467
DCM_CLASS_ERROR,

meson.build

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,14 @@ executable(
190190
'tools/dcm-dump.c',
191191
dependencies : [libdicom_dep],
192192
install : true,
193+
install_tag : 'bin',
193194
)
194195
executable(
195196
'dcm-getframe',
196197
'tools/dcm-getframe.c',
197198
dependencies : [libdicom_dep],
198199
install : true,
200+
install_tag : 'bin',
199201
)
200202

201203
dcm_dump_man = configure_file(

src/dicom-parse.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ static bool parse_element_header(DcmParseState *state,
263263
}
264264

265265
if (state->implicit) {
266-
// this can be an ambiguious VR, eg. pixeldata is allowed in implicit
266+
// this can be an ambiguous VR, eg. pixeldata is allowed in implicit
267267
// mode and has to be disambiguated later from other tags
268268
*vr = dcm_vr_from_tag(*tag);
269269
if (*vr == DCM_VR_ERROR) {

0 commit comments

Comments
 (0)