mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +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:
parent
2157e8d83e
commit
f9308648e9
@ -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;
|
||||
|
@ -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]);
|
||||
|
Loading…
Reference in New Issue
Block a user