diff options
| author | Michael Brown | 2012-04-16 22:47:35 +0200 |
|---|---|---|
| committer | Michael Brown | 2012-04-17 11:46:50 +0200 |
| commit | 831b16addefd7e26ed1027deb7f089ad1350d1f2 (patch) | |
| tree | 73f1a88578b31112ef7a5db7925e961c34d54c5b /src/include/ipxe/uuid.h | |
| parent | [test] Add self-tests for setting types (diff) | |
| download | ipxe-831b16addefd7e26ed1027deb7f089ad1350d1f2.tar.gz ipxe-831b16addefd7e26ed1027deb7f089ad1350d1f2.tar.xz ipxe-831b16addefd7e26ed1027deb7f089ad1350d1f2.zip | |
[settings] Split fetching and storing out of setting type handlers
Refactor setting type handlers to parse and format values, rather than
storing and fetching formatted values.
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 2f3c22482..5de56b94e 100644 --- a/src/include/ipxe/uuid.h +++ b/src/include/ipxe/uuid.h @@ -28,6 +28,6 @@ union uuid { uint8_t raw[16]; }; -extern char * uuid_ntoa ( union uuid *uuid ); +extern char * uuid_ntoa ( const union uuid *uuid ); #endif /* _IPXE_UUID_H */ |
