diff options
author | David Sommerseth <davids@redhat.com> | 2010-01-08 19:26:58 +0100 |
---|---|---|
committer | David Sommerseth <davids@redhat.com> | 2010-01-08 19:26:58 +0100 |
commit | 101070880e270118aa1f3992e2734a667dde575e (patch) | |
tree | 131b0bf9d37c6a8062f210fe622bbd2a679426ac /src/util.h | |
parent | 2d69406de843db678c84cb397afab03e0573c468 (diff) | |
download | python-dmidecode-101070880e270118aa1f3992e2734a667dde575e.tar.gz python-dmidecode-101070880e270118aa1f3992e2734a667dde575e.tar.xz python-dmidecode-101070880e270118aa1f3992e2734a667dde575e.zip |
More fprintf() -> log_append() porting
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -22,9 +22,10 @@ #include <sys/types.h> #include "types.h" +#include "dmilog.h" #define ARRAY_SIZE(x) (sizeof(x)/sizeof((x)[0])) int checksum(const u8 * buf, size_t len); -void *mem_chunk(size_t base, size_t len, const char *devmem); +void *mem_chunk(Log_t *logp, size_t base, size_t len, const char *devmem); int write_dump(size_t base, size_t len, const void *data, const char *dumpfile, int add); |