1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

util_str_hex: use array syntax in guid functions to document usage

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Douglas Bagnall 2018-03-22 17:57:05 +13:00 committed by Andrew Bartlett
parent 2157e8d83e
commit f9308648e9
2 changed files with 4 additions and 4 deletions

View File

@ -38,8 +38,8 @@ NTSTATUS parse_guid_string(const char *s,
uint32_t *time_low,
uint32_t *time_mid,
uint32_t *time_hi_and_version,
uint32_t *clock_seq,
uint32_t *node)
uint32_t clock_seq[2],
uint32_t node[6])
{
uint64_t tmp;
NTSTATUS status;

View File

@ -6,5 +6,5 @@ NTSTATUS parse_guid_string(const char *s,
uint32_t *time_low,
uint32_t *time_mid,
uint32_t *time_hi_and_version,
uint32_t *clock_seq,
uint32_t *node);
uint32_t clock_seq[2],
uint32_t node[6]);