From: Arran Cudbard-Bell Date: Sun, 5 Jun 2022 09:00:51 +0000 (-0400) Subject: Helps to use the correct type X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=186e30852aa954423c94df2a90bd6f27582f4380;p=thirdparty%2Ffreeradius-server.git Helps to use the correct type --- diff --git a/src/lib/util/types.c b/src/lib/util/types.c index 0b89fe348f3..93630dba51f 100644 --- a/src/lib/util/types.c +++ b/src/lib/util/types.c @@ -87,7 +87,7 @@ size_t fr_type_table_len = NUM_ELEMENTS(fr_type_table); * * Useful for setting talloc types correctly. */ -static size_t const fr_type_to_c_type[] = { +static char const *fr_type_to_c_type[] = { [FR_TYPE_STRING] = "char *", [FR_TYPE_OCTETS] = "uint8_t *",