From: Stephan Eberle Date: Tue, 26 Apr 2016 20:52:16 +0000 (+0200) Subject: Fixed misspelled size_t X-Git-Tag: upstream/2.0.3~71 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ff32d017425331fc44df5250ff6c719f48821966;p=platform%2Fupstream%2Flibwebsockets.git Fixed misspelled size_t --- diff --git a/lib/server.c b/lib/server.c index 8bd6848..4edabdd 100644 --- a/lib/server.c +++ b/lib/server.c @@ -234,7 +234,7 @@ int lws_http_serve(struct lws *wsi, char *uri, const char *origin) unsigned char *p = (unsigned char *)sym + 32 + LWS_PRE, *start = p; unsigned char *end = p + sizeof(sym) - 32 - LWS_PRE; #if !defined(WIN32) - size len; + size_t len; #endif int n, spin = 0;