The compiler on my Solaris 9 system doesn't understand the array initialization syntax used here in dir.c. Signed-off-by: Shawn O. Pearce <spearce@xxxxxxxxxxx> --- dir.c | 11 +++++------ 1 files changed, 5 insertions(+), 6 deletions(-) diff --git a/dir.c b/dir.c index 7426fde..038fd82 100644 --- a/dir.c +++ b/dir.c @@ -423,18 +423,17 @@ static int cmp_name(const void *p1, const void *p2) */ static int simple_length(const char *match) { - const char special[256] = { - [0] = 1, ['?'] = 1, - ['\\'] = 1, ['*'] = 1, - ['['] = 1 - }; int len = -1; for (;;) { unsigned char c = *match++; len++; - if (special[c]) + switch (c) { + case 0: case '?': + case '\\': case '*': + case '[': return len; + } } } -- 1.5.1.1.83.g2bfe3 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html