diff options
Diffstat (limited to 'libevent-example.c')
-rw-r--r-- | libevent-example.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libevent-example.c b/libevent-example.c index 5e0bb9f..d9c8784 100644 --- a/libevent-example.c +++ b/libevent-example.c @@ -85,7 +85,7 @@ int main (int argc, char **argv) { redisContext *c = redisLibEventConnect("127.0.0.1", 6379); if (c->error != NULL) { - printf("Connect error: %s\n", c->error); + printf("Connection error: %s\n", c->error); return 1; } |