···265265 if (err)266266 prt_printf(err, "%s: too small (min %llu)",267267 opt->attr.name, opt->min);268268- return -ERANGE;268268+ return -BCH_ERR_ERANGE_option_too_small;269269 }270270271271 if (opt->max && v >= opt->max) {272272 if (err)273273 prt_printf(err, "%s: too big (max %llu)",274274 opt->attr.name, opt->max);275275- return -ERANGE;275275+ return -BCH_ERR_ERANGE_option_too_big;276276 }277277278278 if ((opt->flags & OPT_SB_FIELD_SECTORS) && (v & 511)) {