summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2012-05-20 11:06:29 +0200
committerantirez <antirez@gmail.com>2012-05-24 15:24:57 +0200
commite53a1fdd603370b3ac0cf3644253cfce5fac6740 (patch)
tree88efd809d6569f060082575780b0630088a356dc
parent951213e2d270c58ad776c6be49ee9e9bb8acc5d0 (diff)
downloadredis-e53a1fdd603370b3ac0cf3644253cfce5fac6740.tar.gz
bitop.c renamed bitops.c
bitop.c contains the "Bit related string operations" so it seems more logical to call it bitops instead of bitop. This also makes it matching the name of the test (unit/bitops.tcl).
-rw-r--r--src/Makefile2
-rw-r--r--src/bitops.c (renamed from src/bitop.c)0
2 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index e8ff5d983..7c21632e9 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -96,7 +96,7 @@ QUIET_LINK = @printf ' %b %b\n' $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$@$(EN
endif
REDIS_SERVER_NAME= redis-server
-REDIS_SERVER_OBJ= adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o pubsub.o multi.o debug.o sort.o intset.o syncio.o migrate.o endianconv.o slowlog.o scripting.o bio.o rio.o rand.o memtest.o crc64.o bitop.o
+REDIS_SERVER_OBJ= adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o pubsub.o multi.o debug.o sort.o intset.o syncio.o migrate.o endianconv.o slowlog.o scripting.o bio.o rio.o rand.o memtest.o crc64.o bitops.o
REDIS_CLI_NAME= redis-cli
REDIS_CLI_OBJ= anet.o sds.o adlist.o redis-cli.o zmalloc.o release.o anet.o ae.o
REDIS_BENCHMARK_NAME= redis-benchmark
diff --git a/src/bitop.c b/src/bitops.c
index 053db02b5..053db02b5 100644
--- a/src/bitop.c
+++ b/src/bitops.c