1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-22 17:35:59 +03:00

o Define _read_uint32

This commit is contained in:
Joe Thornber 2002-02-14 14:52:21 +00:00
parent 69019d6e9e
commit 0d3075f5ba

View File

@ -21,6 +21,9 @@ typedef int (*section_fn)(struct pool *mem,
#define _read_int32(root, path, result) \
get_config_uint32(root, path, '/', result)
#define _read_uint32(root, path, result) \
get_config_uint32(root, path, '/', result)
#define _read_int64(root, path, result) \
get_config_uint64(root, path, '/', result)