diff --git a/flog/src/flog.c b/flog/src/flog.c index f48b7f127..d7660f18d 100644 --- a/flog/src/flog.c +++ b/flog/src/flog.c @@ -95,7 +95,7 @@ int flog_map_buf(int fdout) /* * Two buffers are mmapped into memory. A new one is mapped when a first - * one is completly filled. + * one is completely filled. */ if (fbuf && (mbuf - fbuf < BUF_SIZE)) return 0; diff --git a/flog/src/main.c b/flog/src/main.c index fc5d64ebd..e027917c6 100644 --- a/flog/src/main.c +++ b/flog/src/main.c @@ -129,31 +129,30 @@ int main(int argc, char *argv[]) return 0; usage: - fprintf(stderr, - "flog [--mode binary|dprintf] [--output stdout|stderr|filename] [--decode] [--iter number]\n" - "\n" + fprintf(stderr, "flog [--mode binary|dprintf] [--output stdout|stderr|filename] [--decode] [--iter number]\n" + "\n" - "Examples:\n" - "\n" + "Examples:\n" + "\n" - " - run 100000 iterations of instant message processing (immediate dprintf calls)\n" - "\n" - " flog -m dprintf -i 100000\n" - "\n" + " - run 100000 iterations of instant message processing (immediate dprintf calls)\n" + "\n" + " flog -m dprintf -i 100000\n" + "\n" - " - run 100000 iterations in binary mode without processing (queue messages only)\n" - "\n" - " flog -i 100000\n" - "\n" + " - run 100000 iterations in binary mode without processing (queue messages only)\n" + "\n" + " flog -i 100000\n" + "\n" - " - run 100000 iterations in binary mode with decoding after\n" - "\n" - " flog -i 100000 -d\n" - "\n" + " - run 100000 iterations in binary mode with decoding after\n" + "\n" + " flog -i 100000 -d\n" + "\n" - " - run 100000 iterations in binary mode with decoding after, writting results into 'out' file\n" - "\n" - " flog -i 100000 -d -o out\n" - "\n"); + " - run 100000 iterations in binary mode with decoding after, writing results into 'out' file\n" + "\n" + " flog -i 100000 -d -o out\n" + "\n"); return 1; }