1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00

cleanup: corrent indent level

This commit is contained in:
Zdenek Kabelac 2014-04-14 11:20:20 +02:00
parent d896abc705
commit 1d803ee980

View File

@ -82,27 +82,27 @@ static int _default_priority;
/* list of maps, that are unconditionaly ignored */ /* list of maps, that are unconditionaly ignored */
static const char * const _ignore_maps[] = { static const char * const _ignore_maps[] = {
"[vdso]", "[vdso]",
"[vsyscall]", "[vsyscall]",
"[vectors]", "[vectors]",
}; };
/* default blacklist for maps */ /* default blacklist for maps */
static const char * const _blacklist_maps[] = { static const char * const _blacklist_maps[] = {
"locale/locale-archive", "locale/locale-archive",
"/LC_MESSAGES/", "/LC_MESSAGES/",
"gconv/gconv-modules.cache", "gconv/gconv-modules.cache",
"/libblkid.so.", /* not using lzma during mlock (selinux) */ "/libblkid.so.", /* not using lzma during mlock (selinux) */
"/liblzma.so.", /* not using lzma during mlock (selinux) */ "/liblzma.so.", /* not using lzma during mlock (selinux) */
"/libncurses.so.", /* not using ncurses during mlock */ "/libncurses.so.", /* not using ncurses during mlock */
"/libpcre.so.", /* not using pcre during mlock (selinux) */ "/libpcre.so.", /* not using pcre during mlock (selinux) */
"/libreadline.so.", /* not using readline during mlock */ "/libreadline.so.", /* not using readline during mlock */
"/libselinux.so.", /* not using selinux during mlock */ "/libselinux.so.", /* not using selinux during mlock */
"/libsepol.so.", /* not using sepol during mlock */ "/libsepol.so.", /* not using sepol during mlock */
"/libtinfo.so.", /* not using tinfo during mlock */ "/libtinfo.so.", /* not using tinfo during mlock */
"/libuuid.so.", /* not using uuid during mlock (blkid) */ "/libuuid.so.", /* not using uuid during mlock (blkid) */
"/libdl-", /* not using dlopen,dlsym during mlock */ "/libdl-", /* not using dlopen,dlsym during mlock */
/* "/libdevmapper-event.so" */ /* "/libdevmapper-event.so" */
}; };
typedef enum { LVM_MLOCK, LVM_MUNLOCK } lvmlock_t; typedef enum { LVM_MLOCK, LVM_MUNLOCK } lvmlock_t;