■ gcc 3.x 버전에서는 이상없이 컴파일 되다가, gcc 4.x버전으로 넘어오면서 발생하는 warning 이다.

deprecated conversion from string constant to 'char*'


(1) 해결방법 1
: 아래와 같이 Function Prototype을 수정하여 해결할 수 있다.

Original Function Prototype:
    Function(char *);

Updated Function Prototype:
    Function(const char *)

by 민트앤라떼 2011. 11. 3. 11:36