Skip to content
Snippets Groups Projects
Commit af86abde authored by Danny Auble's avatar Danny Auble
Browse files

better debug

parent 268b84b6
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,8 @@ Buf create_buf(char *data, int size)
Buf my_buf;
if (size > MAX_BUF_SIZE) {
error("create_buf: buffer size too large");
error("create_buf: buffer size too large (%d > %d)",
size, MAX_BUF_SIZE);
return NULL;
}
......
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