diff options
author | Ole Troan <ot@cisco.com> | 2019-08-22 09:02:59 +0200 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2019-08-27 07:51:55 +0000 |
commit | 2959d42feb576c0e00c28c4e27658b25f6c783e9 (patch) | |
tree | 9b1e3474eb835b4fac2e3edfbcbda9a02a8cc730 /test/ext/vapi_cpp_test.cpp | |
parent | 3f1964d2d2847c5307694fe8daea0a7eef1e2733 (diff) |
api: use string type for strings in memclnt.api
Explicitly using string type in API allows for autogenerating tools to print
strings instead of hex-dumping byte strings.
Type: fix
Signed-off-by: Ole Troan <ot@cisco.com>
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Change-Id: I573962d6b34d5d10aab9dc6a5fdf101c9b12a6a6
Signed-off-by: Ole Troan <ot@cisco.com>
Diffstat (limited to 'test/ext/vapi_cpp_test.cpp')
-rw-r--r-- | test/ext/vapi_cpp_test.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/ext/vapi_cpp_test.cpp b/test/ext/vapi_cpp_test.cpp index 46a2c0ec2f1..589eb94a5ed 100644 --- a/test/ext/vapi_cpp_test.cpp +++ b/test/ext/vapi_cpp_test.cpp @@ -49,11 +49,11 @@ void verify_show_version_reply (const Show_version_reply &r) auto &p = r.get_payload (); printf ("show_version_reply: program: `%s', version: `%s', build directory: " "`%s', build date: `%s'\n", - vl_api_from_api_string (&p.program), - vl_api_from_api_string (&p.version), - vl_api_from_api_string (&p.build_directory), - vl_api_from_api_string (&p.build_date)); - ck_assert_str_eq ("vpe", (char *)vl_api_from_api_string (&p.program)); + vl_api_from_api_string (p.program), + vl_api_from_api_string (p.version), + vl_api_from_api_string (p.build_directory), + vl_api_from_api_string (p.build_date)); + ck_assert_str_eq ("vpe", (char *)vl_api_from_api_string (p.program)); } Connection con; |