상상 너머 그 무언가...

declared as an array with a negative size 본문

개발관련(Development)/코코스2D(Cocos2D)

declared as an array with a negative size

Clack 2015. 5. 12. 15:07

/* The size of `long', as computed by sizeof. */

#define CURL_SIZEOF_LONG 4


위 코드를 아래와 같이 변경하면 된다.


/* The size of `long', as computed by sizeof. */

#define CURL_SIZEOF_LONG sizeof(long)