1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-10-29 16:23:49 +03:00

o Additional device/filter-level debugging messages + duplicate alias fix

o 32/64-bit size_t fix (pjc)
This commit is contained in:
Alasdair Kergon
2003-01-08 16:41:22 +00:00
parent c68e513814
commit 4970ebfb92
10 changed files with 60 additions and 21 deletions

View File

@@ -12,6 +12,13 @@
#include <sys/types.h>
#include <inttypes.h>
/* Define some portable printing types */
#if __WORDSIZE == 64
#define PRIsize_t "lu"
#else
#define PRIsize_t "u"
#endif
struct str_list {
struct list list;
char *str;