aboutsummaryrefslogtreecommitdiff
path: root/fesvr
diff options
context:
space:
mode:
authorDai chou <tommy0705c@gmail.com>2020-03-17 04:32:34 +0800
committerChih-Min Chao <chihmin.chao@sifive.com>2020-04-05 22:35:05 -0700
commit77e3a7538426c15ae4d6b2bfff99e83493791b77 (patch)
tree3450613841b975e3977673a080c9ceac0f9118c8 /fesvr
parent5dac07f2f57b9602e3a15a29124c9163a62a1243 (diff)
downloadspike-77e3a7538426c15ae4d6b2bfff99e83493791b77.zip
spike-77e3a7538426c15ae4d6b2bfff99e83493791b77.tar.gz
spike-77e3a7538426c15ae4d6b2bfff99e83493791b77.tar.bz2
fixed htif exception typo (#423)
Diffstat (limited to 'fesvr')
-rw-r--r--fesvr/htif.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/fesvr/htif.cc b/fesvr/htif.cc
index be70394..62dfaa5 100644
--- a/fesvr/htif.cc
+++ b/fesvr/htif.cc
@@ -238,7 +238,7 @@ void htif_t::parse_arguments(int argc, char ** argv)
retry:
switch (c) {
case 'h': usage(argv[0]);
- throw std::invalid_argument("User quered htif_t help text");
+ throw std::invalid_argument("User queried htif_t help text");
case HTIF_LONG_OPTIONS_OPTIND:
if (optarg) dynamic_devices.push_back(new rfb_t(atoi(optarg)));
else dynamic_devices.push_back(new rfb_t);