diff options
author | David Decotigny <ddecotig@gmail.com> | 2017-01-20 10:29:22 -0800 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2017-01-22 13:45:00 +0000 |
commit | 04c7befa730b3a6bfed069d3c6f6539bddb0ee52 (patch) | |
tree | 16d17add75fe68138fc9c83777cd053df8f59c1c /src/include/ipxe/uuid.h | |
parent | fba3b39900af52e695d59bc34f28bb8d22526ddb (diff) | |
download | ipxe-04c7befa730b3a6bfed069d3c6f6539bddb0ee52.tar.gz |
[build] Return const char * from uuid_ntoa()
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/uuid.h')
-rw-r--r-- | src/include/ipxe/uuid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/ipxe/uuid.h b/src/include/ipxe/uuid.h index 6c45eb9aa..24c46acaf 100644 --- a/src/include/ipxe/uuid.h +++ b/src/include/ipxe/uuid.h @@ -47,6 +47,6 @@ static inline void uuid_mangle ( union uuid *uuid ) { __bswap_16s ( &uuid->canonical.c ); } -extern char * uuid_ntoa ( const union uuid *uuid ); +extern const char * uuid_ntoa ( const union uuid *uuid ); #endif /* _IPXE_UUID_H */ |