]> git.saurik.com Git - redis.git/commitdiff
added a newline for code readability
authorantirez <antirez@gmail.com>
Tue, 13 Sep 2011 10:21:54 +0000 (12:21 +0200)
committerantirez <antirez@gmail.com>
Tue, 13 Sep 2011 10:21:54 +0000 (12:21 +0200)
src/redis.c

index 6b92018df3e7b3c3cdc4cf5e46fa8a3431fa4dca..77f4666c2d4aba2c55cd9da77881adabc882178c 100644 (file)
@@ -575,6 +575,7 @@ int serverCron(struct aeEventLoop *eventLoop, long long id, void *clientData) {
      * in objects at every object access, and accuracy is not needed.
      * To access a global var is faster than calling time(NULL) */
     server.unixtime = time(NULL);
+
     /* We have just 22 bits per object for LRU information.
      * So we use an (eventually wrapping) LRU clock with 10 seconds resolution.
      * 2^22 bits with 10 seconds resoluton is more or less 1.5 years.