警告:从不同大小的整数转换为指针[-Wint-to-pointer-cast]

时间:2013-08-14 01:38:44

标签: c compiler-errors warnings strncpy getenv

我正在用David Haskins的一本名为“C in Linux”的书学习C语言 但是有一个问题。当我尝试编译此代码时:

#include <stdio.h>
#include <string.h>

int main (int argc, char *argv[], char *env[]) {

    printf("Content-type:text/html\n\n<html><body bgcolor=#23abe2>\n"); 
    char value[256] = "";

    strncpy(value,(char *) getenv("QUERY_STRING"), 255);
    printf("QUERY_STRING:%s<BR>\n", value );
    printf("<form>\n");
    printf("<input type=\"TEXT\" name=\"ITEM1\"> \n");
    printf("<input type=\"TEXT\" name=\"ITEM2\"> \n");
    printf("<input type=\"SUBMIT\">");
    printf("</form></body></html>\n");

    return 0; 
}

终端显示此警告!

chapter4_1.c: In function ‘main’:
chapter4_1.c:14:16: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

1 个答案:

答案 0 :(得分:7)

你忘了#include <stdlib.h>。这意味着getenv()未在任何地方声明,因此默认情况下会假设返回int,您将其转换为char *。在64位计算机上,int(32位)和char *(64位)具有不同的大小,因此警告。

另外,由于char *已经返回getenv(),因此无需转换为char *。演员表仅用于掩盖错误(即没有它,程序会给你一个关于将int传递给char *的明确错误消息。