diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-13 21:06:21 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-13 21:06:21 +0000 |
commit | 150f402b36197d822f8a7dd835231cd67b77e959 (patch) | |
tree | ddac0e3876f058e0070dc497902994583517f879 /sysklogd/syslogd.c | |
parent | 2418288cac34272d99dc8b9f46a74163eff5ea2c (diff) | |
download | busybox-w32-150f402b36197d822f8a7dd835231cd67b77e959.tar.gz busybox-w32-150f402b36197d822f8a7dd835231cd67b77e959.tar.bz2 busybox-w32-150f402b36197d822f8a7dd835231cd67b77e959.zip |
whitespace fixes (leading spaces to tab)
Diffstat (limited to 'sysklogd/syslogd.c')
-rw-r--r-- | sysklogd/syslogd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c index 405282796..716e41f5f 100644 --- a/sysklogd/syslogd.c +++ b/sysklogd/syslogd.c | |||
@@ -201,7 +201,7 @@ static void log_to_shmem(const char *msg, int len) | |||
201 | 201 | ||
202 | /* Circular Buffer Algorithm: | 202 | /* Circular Buffer Algorithm: |
203 | * -------------------------- | 203 | * -------------------------- |
204 | * tail == position where to store next syslog message. | 204 | * tail == position where to store next syslog message. |
205 | * head == position of next message to retrieve ("print"). | 205 | * head == position of next message to retrieve ("print"). |
206 | * if head == tail, there is no "unprinted" messages left. | 206 | * if head == tail, there is no "unprinted" messages left. |
207 | * head is typically advanced by separate "reader" program, | 207 | * head is typically advanced by separate "reader" program, |