warning: comparison between pointer and integer in

2019-02-28 08:07发布

I get a warning

warning: comparison between pointer and integer

on the line containing if from the next piece of code:

char cwd[1024];

if (getcwd(cwd, sizeof(cwd)) != (char*)NULL)
    printf("%s\n",cwd);
else
    error_print("error in pwd");

how and what do I need to fix?

5条回答
forever°为你锁心
2楼-- · 2019-02-28 08:41

In the return types section of the following link, getcwd returns null on failure. Thus, instead of checking for != (char *)NULL just check for != NULL

http://linux.die.net/man/3/getcwd

查看更多
该账号已被封号
3楼-- · 2019-02-28 08:46

Do you include unistd.h? If not, the error appears because your C compiler is assuming getcwd returns int.

The fix? Include unistd.h

查看更多
小情绪 Triste *
4楼-- · 2019-02-28 08:55

Modify line with this one if (getcwd(cwd, sizeof(cwd)) != NULL)

查看更多
你好瞎i
5楼-- · 2019-02-28 08:57

The prototype of getcwd is

char *getcwd(char *buf, size_t size);

Make sure you include <unistd.h> otherwise the return type would default to int.

Here, even Ideone gives its Current Working Directory

查看更多
一夜七次
6楼-- · 2019-02-28 08:57

have you included the .h necessary so that the compiler understands what getcwd returns?

the behavior of your c compilers is probably to assume an int return value from every undefined function.

查看更多
登录 后发表回答