]> git.sur5r.net Git - i3/i3/blobdiff - src/log.c
Code style: fix misaligned and misindented comments
[i3/i3] / src / log.c
index 916085f456a8d8c1a95dbfca8c13d3d5b038db12..31db8b33c5b4e013ac9ba874f3b751a63e7717c0 100644 (file)
--- a/src/log.c
+++ b/src/log.c
@@ -124,9 +124,9 @@ void init_logging(void) {
  */
 void open_logbuffer(void) {
     /* Reserve 1% of the RAM for the logfile, but at max 25 MiB.
-         * For 512 MiB of RAM this will lead to a 5 MiB log buffer.
-         * At the moment (2011-12-10), no testcase leads to an i3 log
-         * of more than ~ 600 KiB. */
+     * For 512 MiB of RAM this will lead to a 5 MiB log buffer.
+     * At the moment (2011-12-10), no testcase leads to an i3 log
+     * of more than ~ 600 KiB. */
     logbuffer_size = min(physical_mem_bytes * 0.01, shmlog_size);
 #if defined(__FreeBSD__)
     sasprintf(&shmlogname, "/tmp/i3-log-%d", getpid());