Index: generators/TableGenerator.m ================================================================== --- generators/TableGenerator.m +++ generators/TableGenerator.m @@ -91,11 +91,11 @@ response = [client performRequest: request]; while ((line = [response readLine]) != nil) { void *pool2; OFArray *split; - OFString **splitObjects; + OFString *const *splitObjects; of_unichar_t codep; if ([line length] == 0) continue; @@ -140,11 +140,11 @@ response = [client performRequest: request]; while ((line = [response readLine]) != nil) { void *pool2; OFArray *split; - OFString **splitObjects; + OFString *const *splitObjects; of_unichar_t codep; if ([line length] == 0 || [line hasPrefix: @"#"]) continue;