diff options
author | José Bollo <jose.bollo@iot.bzh> | 2016-03-25 10:54:15 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2016-03-25 10:54:15 +0100 |
commit | f629aad464ea5595aeea9ada8b32d412628c3c2f (patch) | |
tree | 34aebaf5955e63174f5ca89417f17d7b67777579 | |
parent | 12c224a9684d2d78dfe238504c1b1d849d591c1c (diff) |
session: fix bug
Change-Id: I2b66d5156e1ca0d461a99e5b556b7da7c84ceea9
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r-- | src/session.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/session.c b/src/session.c index 85eb91d4..131d80c1 100644 --- a/src/session.c +++ b/src/session.c @@ -39,8 +39,8 @@ static struct { int max; } sessions; -static const char key_uuid = "uuid"; -static const char key_token = "token"; +static const char key_uuid[] = "uuid"; +static const char key_token[] = "token"; // Free context [XXXX Should be protected again memory abort XXXX] static void ctxUuidFreeCB (AFB_clientCtx *client) |