diff options
Diffstat (limited to 'gdb/unittests/rsp-low-selftests.c')
-rw-r--r-- | gdb/unittests/rsp-low-selftests.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/unittests/rsp-low-selftests.c b/gdb/unittests/rsp-low-selftests.c index e316a22..541d030 100644 --- a/gdb/unittests/rsp-low-selftests.c +++ b/gdb/unittests/rsp-low-selftests.c @@ -34,7 +34,7 @@ static void test_hex2bin_byte_vector () bv = hex2bin (""); SELF_CHECK (bv.size () == 0); - /* Test a well-formated hex string. */ + /* Test a well-formatted hex string. */ bv = hex2bin ("abcd01"); SELF_CHECK (bv.size () == 3); SELF_CHECK (bv[0] == 0xab); |