ubase

suckless linux base utils
git clone git://git.2f30.org/ubase
Log | Files | Refs | README | LICENSE

commit 0476f601b201aca990b7f8eff7d710015d083b38
parent 5f3c183b854a16dddca6fc1fa7a5bef8d685539c
Author: sin <sin@2f30.org>
Date:   Mon, 28 Oct 2013 16:51:58 +0000

Fix alignment for table `optnames[]'

Diffstat:
Mmount.c | 24++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/mount.c b/mount.c @@ -14,18 +14,18 @@ struct { const char *notopt; unsigned long v; } optnames[] = { - { "remount", NULL, MS_REMOUNT }, - { "ro", "rw", MS_RDONLY }, - { "sync", "async", MS_SYNCHRONOUS }, - { "dirsync", NULL, MS_DIRSYNC }, - { "nodev", "dev", MS_NODEV }, - { "noatime", "atime", MS_NOATIME }, - { "nodiratime", "diratime", MS_NODIRATIME }, - { "noexec", "exec", MS_NOEXEC }, - { "nosuid", "suid", MS_NOSUID }, - { "mand", "nomand", MS_MANDLOCK }, - { "relatime", "norelatime", MS_RELATIME }, - { NULL, NULL, 0 } + { "remount", NULL, MS_REMOUNT }, + { "ro", "rw", MS_RDONLY }, + { "sync", "async", MS_SYNCHRONOUS }, + { "dirsync", NULL, MS_DIRSYNC }, + { "nodev", "dev", MS_NODEV }, + { "noatime", "atime", MS_NOATIME }, + { "nodiratime", "diratime", MS_NODIRATIME }, + { "noexec", "exec", MS_NOEXEC }, + { "nosuid", "suid", MS_NOSUID }, + { "mand", "nomand", MS_MANDLOCK }, + { "relatime", "norelatime", MS_RELATIME }, + { NULL, NULL, 0 } }; static struct option {