Skip to content
Snippets Groups Projects
Commit 648c7989 authored by Scott Vokes's avatar Scott Vokes
Browse files

Consistentcy: log to stderr for both enc and dec

parent 10ce4f88
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ typedef enum {
#include <stdio.h>
#include <ctype.h>
#include <assert.h>
#define LOG(...) printf(__VA_ARGS__)
#define LOG(...) fprintf(stderr, __VA_ARGS__)
#define ASSERT(X) assert(X)
static const char *state_names[] = {
"not_full",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment