Commit 5c85a041 authored by Yossi Gottlieb's avatar Yossi Gottlieb
Browse files

Use a const funcs in redisContext.

parent 44ef4de9
......@@ -203,7 +203,7 @@ typedef struct redisContextFuncs {
/* Context for a connection to Redis */
typedef struct redisContext {
redisContextFuncs *funcs; /* Function table */
const redisContextFuncs *funcs; /* Function table */
int err; /* Error flags, 0 when there is no error */
char errstr[128]; /* String representation of error when applicable */
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment