Commit f6d9a8e4 authored by Geoff Simmons's avatar Geoff Simmons Committed by Pål Hermunn Johansen

VMOD blob: explicitly cast negative int8_t constants

parent 299c3269
......@@ -28,8 +28,8 @@
#include "vmod_blob.h"
#define ILL -1
#define PAD -2
#define ILL ((int8_t) -1)
#define PAD ((int8_t) -2)
static const struct b64_alphabet {
const char b64[64];
......
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