On Sun, Jun 14, 2015 at 5:42 AM, Eric Sunshine <sunsh...@sunshineco.com> wrote: > > This variable name doesn't convey much about its purpose, and > introduces a bit of maintenance burden if the limit is some day > changed. Perhaps "sane_size_limit" or something even more descriptive > (and/or terse) would be better. >
Would you be happy with this change? - static const int one_MB = 1 << 20; + static const int max_file_size = 1 << 20; /* 1MB */ -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html