* eet: compile with -Werror on 64bits too.

SVN revision: 55201
This commit is contained in:
Cedric BAIL 2010-12-03 16:55:50 +00:00
parent 1ca29e1649
commit 030c1f3f18
1 changed files with 2 additions and 2 deletions

View File

@ -368,8 +368,8 @@ AC_TRY_RUN(
#include <stdlib.h>
int main (int argc, char **argv) {
void *foo = NULL;
int bar = (int)foo;
return (int)foo;
long long bar = (long long)foo;
return (long long)foo;
}
],
[have_null="yes"],