diff options
Diffstat (limited to 'example.c')
-rw-r--r-- | example.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ int main(void) { c = redisConnect((char*)"127.0.0.1", 6379, NULL); if (c->error != NULL) { - printf("Connection error: %s", ((redisReply*)c->error)->reply); + printf("Connection error: %s", c->error); exit(1); } |