diff options
author | Damjan Marion <damarion@cisco.com> | 2023-04-04 17:06:26 +0000 |
---|---|---|
committer | Ole Tr�an <otroan@employees.org> | 2023-04-06 08:00:08 +0000 |
commit | 5294cdc79213a8703f70d9a300b0c5806c788ca4 (patch) | |
tree | dcf97886f8331b832a46ca71e9f4bb5a61358373 /src/vppinfra/format.h | |
parent | 1315d14d4c022d6fcfe43e6223b8ff557508b31f (diff) |
vppinfra: refactor uword bitmaps
Type: improvement
Change-Id: I4f05a0435825cd23b8ad8a6f8f1397e60c522319
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vppinfra/format.h')
-rw-r--r-- | src/vppinfra/format.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vppinfra/format.h b/src/vppinfra/format.h index 2cd636d0be8..a359328005f 100644 --- a/src/vppinfra/format.h +++ b/src/vppinfra/format.h @@ -322,8 +322,8 @@ u8 *format_c_identifier (u8 * s, va_list * va); /* Format hexdump with both hex and printable chars - compatible with text2pcap */ u8 *format_hexdump (u8 * s, va_list * va); -/* Format bitmap of array of u64 numbers */ -u8 *format_u64_bitmap (u8 *s, va_list *va); +/* Format bitmap of array of uword numbers */ +u8 *format_uword_bitmap (u8 *s, va_list *va); /* Unix specific formats. */ #ifdef CLIB_UNIX |