minor aesthetic change

This commit is contained in:
antirez 2010-07-01 15:14:25 +02:00
parent bb8716b6dc
commit 0f49d6b049

View File

@ -1,5 +1,9 @@
#include "redis.h"
/*-----------------------------------------------------------------------------
* Pubsub low level API
*----------------------------------------------------------------------------*/
void freePubsubPattern(void *p) {
pubsubPattern *pat = p;
@ -215,6 +219,10 @@ int pubsubPublishMessage(robj *channel, robj *message) {
return receivers;
}
/*-----------------------------------------------------------------------------
* Pubsub commands implementation
*----------------------------------------------------------------------------*/
void subscribeCommand(redisClient *c) {
int j;