ecllib: Temp fix to avoid assert. This fix will be included in the next ecllib release

This commit is contained in:
Bjørn Erik Jensen 2018-05-22 14:58:42 +02:00
parent ba89d348c0
commit e8d586054c

View File

@ -343,7 +343,7 @@ static bool valid_base(const char * input_base, bool * upper_case) {
base = input_base;
for (int i=0; i < strlen(base); i++) {
char c = base[i];
unsigned char c = base[i];
if (isupper(c))
upper = true;