Bug 1623067 - Uses a padding for 6 characters instead of 5 for the help of the features bitfield r=gerald

Differential Revision: https://phabricator.services.mozilla.com/D67144

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Julien Wajsberg 2020-03-17 22:55:36 +00:00
Родитель c8f56f1eb8
Коммит 90a5bc29a0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2617,7 +2617,7 @@ static void PrintUsageThenExit(int aExitCode) {
PROFILER_MAX_INTERVAL);
#define PRINT_FEATURE(n_, str_, Name_, desc_) \
printf(" %c %5u: \"%s\" (%s)\n", FeatureCategory(ProfilerFeature::Name_), \
printf(" %c %6u: \"%s\" (%s)\n", FeatureCategory(ProfilerFeature::Name_), \
ProfilerFeature::Name_, str_, desc_);
PROFILER_FOR_EACH_FEATURE(PRINT_FEATURE)