From c1cc28f230eef129c54af7da3a1220923d9fb48f Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 27 Feb 2014 13:17:23 +0100 Subject: [PATCH] warnigns -> warnings in redisBitpos(). --- src/bitops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bitops.c b/src/bitops.c index 7aff6b76..af46b63c 100644 --- a/src/bitops.c +++ b/src/bitops.c @@ -184,7 +184,7 @@ long redisBitpos(void *s, long count, int bit) { /* If we reached this point, there is a bug in the algorithm, since * the case of no match is handled as a special case before. */ redisPanic("End of redisBitpos() reached."); - return 0; /* Just to avoid warnigns. */ + return 0; /* Just to avoid warnings. */ } /* -----------------------------------------------------------------------------