Displaying 2 results from an estimated 2 matches for "rczi".
2007 Aug 30
2
comparing pointer to integer?
For example in src/lib/file-cache.c:
if (cache->mmap_base == MAP_FAILED) {
Should be fixed, probably like this:
if ((int)cache->mmap_base == MAP_FAILED) {
There are a lot of occurences for these in the source. GCC only warns
because of this, but DEC C is known to consider this an error:
Error: file-cache.c, line 79: In this statement, "new_base" and
"(-1)" may
2006 Aug 17
2
dovecot on OSF/1 4.0
...l -I/usr/pkg/include -ieee -O2 -I/usr/pkg/include
-I/usr/pkg/include -c mail-cache-decisions.c
cc: Error: mail-index-private.h, line 177: Invalid declarator.
unsigned int readonly:1;
---------------------^
*** Exit 1
Stop.
... etc, more of this error in other files...
--
G?bor B?rczi