From c12a72e07302e84450bebe007d522a512a85fe21 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Wed, 25 Mar 2020 16:11:45 -0700 Subject: [PATCH] util: Correct some help text for the initparam m5 utility command. The "key" value passed to the initparam command can be at most 16 characters long, but the text said it had to be shorter than 16 characters. Change-Id: Ic98dc87feb868b44c4210ae16cb5b0dad2a67d88 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/27227 Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power Tested-by: kokoro --- util/m5/src/m5.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/m5/src/m5.c b/util/m5/src/m5.c index d5b27a320..83174d07f 100644 --- a/util/m5/src/m5.c +++ b/util/m5/src/m5.c @@ -316,8 +316,8 @@ struct MainFunc mainfuncs[] = { { "checkpoint", do_checkpoint, "[delay [period]]" }, { "addsymbol", do_addsymbol, "
" }, { "loadsymbol", do_loadsymbol, "" }, - { "initparam", do_initparam, "[key] // key must be shorter" - " than 16 chars" }, + { "initparam", do_initparam, "[key] // key may be at most" + " 16 characters long" }, { "sw99param", do_sw99param, "" } }; int numfuncs = sizeof(mainfuncs) / sizeof(mainfuncs[0]); -- 2.30.2