X-Git-Url: http://git.bytex64.net/?a=blobdiff_plain;f=cgi%2Fcanned_responses.c;h=b1da932ad6437ff68d7288b2b16b077065a7d49d;hb=476c970903c4f3d29a8da3fa7c6f6f237745a8b7;hp=3b09913eae64a1442b21174648ac4e0e86143008;hpb=4d157537c34bdc5576b449d0a632841dc5237aab;p=blerg.git diff --git a/cgi/canned_responses.c b/cgi/canned_responses.c index 3b09913..b1da932 100644 --- a/cgi/canned_responses.c +++ b/cgi/canned_responses.c @@ -6,7 +6,7 @@ #include "canned_responses.h" #include "app.h" -void respond_simple_data(unsigned const char *data, int len) { +void respond_simple_data(const char *data, int len) { printf("Content-length: %d\r\n\r\n", len); fwrite(data, len, 1, stdout); }