diff --git a/deps/geohash-int/Makefile b/deps/geohash-int/Makefile index bf9eaebb..b7c25957 100644 --- a/deps/geohash-int/Makefile +++ b/deps/geohash-int/Makefile @@ -1,6 +1,6 @@ STD= WARN= -Wall -OPT= -Ofast +OPT= -O2 R_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) R_LDFLAGS= $(LDFLAGS) diff --git a/src/geo.c b/src/geo.c index 90c59c80..35931f4f 100644 --- a/src/geo.c +++ b/src/geo.c @@ -580,7 +580,7 @@ void georadiusByMemberCommand(redisClient *c) { georadiusGeneric(c, RADIUS_MEMBER); } -/* GEODECODE long lat */ +/* GEODECODE score */ void geodecodeCommand(redisClient *c) { GeoHashBits geohash; if (getLongLongFromObjectOrReply(c, c->argv[1], (long long *)&geohash.bits,