log: fix whitespaces
authorLuka Perkov <luka@openwrt.org>
Tue, 21 Apr 2015 17:04:44 +0000 (19:04 +0200)
committerJohn Crispin <blogic@openwrt.org>
Thu, 14 May 2015 04:25:38 +0000 (06:25 +0200)
Signed-off-by: Luka Perkov <luka@openwrt.org>
log/syslog.c
log/syslog.h

index 4cabb434a0ea050e7d79452566807a66d4c51eae..f75fed9e5139cd0b810d1bba49e15686609e7497 100644 (file)
@@ -203,7 +203,7 @@ syslog_open(void)
        int fd;
 
        unlink(log_dev);
-       fd = usock(USOCK_UNIX | USOCK_UDP |  USOCK_SERVER | USOCK_NONBLOCK, log_dev, NULL);
+       fd = usock(USOCK_UNIX | USOCK_UDP | USOCK_SERVER | USOCK_NONBLOCK, log_dev, NULL);
        if (fd < 0) {
                fprintf(stderr,"Failed to open %s\n", log_dev);
                return -1;
index b682cedf504f08958a4cf83858c942a2fb6257f7..81a039f3263e90b44e3568803e1d7aee58cfe386 100644 (file)
@@ -26,7 +26,7 @@ struct log_head {
        unsigned int id;
        int priority;
        int source;
-        struct timespec ts;
+       struct timespec ts;
        char data[];
 };