diff options
Diffstat (limited to 'lcms2mt/src/cmserr.c')
-rw-r--r-- | lcms2mt/src/cmserr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lcms2mt/src/cmserr.c b/lcms2mt/src/cmserr.c index 3165a805..82e2486c 100644 --- a/lcms2mt/src/cmserr.c +++ b/lcms2mt/src/cmserr.c @@ -1,7 +1,7 @@ //--------------------------------------------------------------------------------- // // Little Color Management System -// Copyright (c) 1998-2017 Marti Maria Saguer +// Copyright (c) 1998-2020 Marti Maria Saguer // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the "Software"), @@ -38,7 +38,7 @@ int CMSEXPORT cmsGetEncodedCMMversion(void) // compare two strings ignoring case int CMSEXPORT cmsstrcasecmp(const char* s1, const char* s2) { - register const unsigned char *us1 = (const unsigned char *)s1, + CMSREGISTER const unsigned char *us1 = (const unsigned char *)s1, *us2 = (const unsigned char *)s2; while (toupper(*us1) == toupper(*us2++)) |