summaryrefslogtreecommitdiffstats
path: root/lib/log/log.h
diff options
context:
space:
mode:
authorAlasdair Kergon <agk@redhat.com>2007-04-26 16:44:59 +0000
committerAlasdair Kergon <agk@redhat.com>2007-04-26 16:44:59 +0000
commit4f2f566b064ba1e67e95bf26a22f2e7d492b649c (patch)
tree461758c5ee043caa07bae34174ac5836824f239b /lib/log/log.h
parent867c3249cb7d0ffc067984bfeeb868d7c52a67ad (diff)
downloadlvm2-4f2f566b064ba1e67e95bf26a22f2e7d492b649c.tar.gz
lvm2-4f2f566b064ba1e67e95bf26a22f2e7d492b649c.tar.xz
lvm2-4f2f566b064ba1e67e95bf26a22f2e7d492b649c.zip
Add devices/preferred_names config regex list for displayed device names.
Free a temporary dir string in fcntl_lock_file() after use. Fix a dm_pool_destroy() in matcher_create(). Introduce goto_bad macro.
Diffstat (limited to 'lib/log/log.h')
-rw-r--r--lib/log/log.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/log/log.h b/lib/log/log.h
index 1c75cbef..925d0f99 100644
--- a/lib/log/log.h
+++ b/lib/log/log.h
@@ -138,5 +138,6 @@ void print_log(int level, const char *file, int line, const char *format, ...)
#define return_0 do { stack; return 0; } while (0)
#define return_NULL do { stack; return NULL; } while (0)
#define goto_out do { stack; goto out; } while (0)
+#define goto_bad do { stack; goto bad; } while (0)
#endif