diff --git a/src/objnam.c b/src/objnam.c index 61c277d5e..0cb7a5dbe 100644 --- a/src/objnam.c +++ b/src/objnam.c @@ -2630,7 +2630,7 @@ makeplural(const char* oldstr) /* -eau/-eaux (gateau, chapeau...) */ if (len >= 3 && !strcmpi(spot - 2, "eau") /* 'bureaus' is the more common plural of 'bureau' */ - && strncmpi(str, "bureau", 6)) { + && BSTRCMPI(str, spot - 5, "bureau")) { Strcasecpy(spot + 1, "x"); goto bottom; }