summaryrefslogtreecommitdiff
path: root/src/cmstypes.c
diff options
context:
space:
mode:
authorDaniel Jelinski <djelinski1@gmail.com>2022-04-06 15:59:11 +0200
committerGitHub <noreply@github.com>2022-04-06 15:59:11 +0200
commit737cb6fcfd575fe16dd4f907fb049a8b05a25f76 (patch)
tree531ab745d7d96f7db01263d536632448dd77fb36 /src/cmstypes.c
parentbf17e918341d9847f5617d40a25abc0ae5cd815c (diff)
downloadlcms2-737cb6fcfd575fe16dd4f907fb049a8b05a25f76.tar.gz
Fix Sting typo
Add missing `r` in `string`s
Diffstat (limited to 'src/cmstypes.c')
-rw-r--r--src/cmstypes.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/cmstypes.c b/src/cmstypes.c
index c05a3ec..a447341 100644
--- a/src/cmstypes.c
+++ b/src/cmstypes.c
@@ -3706,7 +3706,7 @@ country varies for each element:
// Auxiliary, read an string specified as count + string
static
-cmsBool ReadCountAndSting(struct _cms_typehandler_struct* self, cmsIOHANDLER* io, cmsMLU* mlu, cmsUInt32Number* SizeOfTag, const char* Section)
+cmsBool ReadCountAndString(struct _cms_typehandler_struct* self, cmsIOHANDLER* io, cmsMLU* mlu, cmsUInt32Number* SizeOfTag, const char* Section)
{
cmsUInt32Number Count;
char* Text;
@@ -3736,7 +3736,7 @@ cmsBool ReadCountAndSting(struct _cms_typehandler_struct* self, cmsIOHANDLER* i
}
static
-cmsBool WriteCountAndSting(struct _cms_typehandler_struct* self, cmsIOHANDLER* io, cmsMLU* mlu, const char* Section)
+cmsBool WriteCountAndString(struct _cms_typehandler_struct* self, cmsIOHANDLER* io, cmsMLU* mlu, const char* Section)
{
cmsUInt32Number TextSize;
char* Text;
@@ -3760,11 +3760,11 @@ void *Type_CrdInfo_Read(struct _cms_typehandler_struct* self, cmsIOHANDLER* io,
cmsMLU* mlu = cmsMLUalloc(self ->ContextID, 5);
*nItems = 0;
- if (!ReadCountAndSting(self, io, mlu, &SizeOfTag, "nm")) goto Error;
- if (!ReadCountAndSting(self, io, mlu, &SizeOfTag, "#0")) goto Error;
- if (!ReadCountAndSting(self, io, mlu, &SizeOfTag, "#1")) goto Error;
- if (!ReadCountAndSting(self, io, mlu, &SizeOfTag, "#2")) goto Error;
- if (!ReadCountAndSting(self, io, mlu, &SizeOfTag, "#3")) goto Error;
+ if (!ReadCountAndString(self, io, mlu, &SizeOfTag, "nm")) goto Error;
+ if (!ReadCountAndString(self, io, mlu, &SizeOfTag, "#0")) goto Error;
+ if (!ReadCountAndString(self, io, mlu, &SizeOfTag, "#1")) goto Error;
+ if (!ReadCountAndString(self, io, mlu, &SizeOfTag, "#2")) goto Error;
+ if (!ReadCountAndString(self, io, mlu, &SizeOfTag, "#3")) goto Error;
*nItems = 1;
return (void*) mlu;
@@ -3781,11 +3781,11 @@ cmsBool Type_CrdInfo_Write(struct _cms_typehandler_struct* self, cmsIOHANDLER*
cmsMLU* mlu = (cmsMLU*) Ptr;
- if (!WriteCountAndSting(self, io, mlu, "nm")) goto Error;
- if (!WriteCountAndSting(self, io, mlu, "#0")) goto Error;
- if (!WriteCountAndSting(self, io, mlu, "#1")) goto Error;
- if (!WriteCountAndSting(self, io, mlu, "#2")) goto Error;
- if (!WriteCountAndSting(self, io, mlu, "#3")) goto Error;
+ if (!WriteCountAndString(self, io, mlu, "nm")) goto Error;
+ if (!WriteCountAndString(self, io, mlu, "#0")) goto Error;
+ if (!WriteCountAndString(self, io, mlu, "#1")) goto Error;
+ if (!WriteCountAndString(self, io, mlu, "#2")) goto Error;
+ if (!WriteCountAndString(self, io, mlu, "#3")) goto Error;
return TRUE;