diff options
author | Tom Rini <trini@konsulko.com> | 2022-02-03 15:55:02 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-02-03 15:55:02 -0500 |
commit | 3e5f4b337d89e95af9d3700a4b055b552bf22ac4 (patch) | |
tree | 86ff5fbee12f43f7d700d130c92009aef12fc185 /test/print_ut.c | |
parent | 006fddde01da7e8b3c7cad4a35f3245edc894ab4 (diff) | |
parent | 5b9a5b2b966bf738ca4115a9dca52d0dc9f2710d (diff) |
Merge branch '2022-02-03-assorted-fixes'
- Update CI image to have libgnutls available.
- Assorted ARM and SPL bugfixes
Diffstat (limited to 'test/print_ut.c')
-rw-r--r-- | test/print_ut.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/print_ut.c b/test/print_ut.c index 194387f169..a133907674 100644 --- a/test/print_ut.c +++ b/test/print_ut.c @@ -118,7 +118,7 @@ static int print_printf(struct unit_test_state *uts) snprintf(str, 0, "testing none"); ut_asserteq('x', *str); - sprintf(big_str, "_%ls_", L"foo"); + sprintf(big_str, "_%ls_", u"foo"); ut_assertok(strcmp("_foo_", big_str)); /* Test the banner function */ |