From: cedric Date: Fri, 3 Dec 2010 16:55:50 +0000 (+0000) Subject: * eet: compile with -Werror on 64bits too. X-Git-Tag: submit/2.0alpha-wayland/20121127.222001~233 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=be6c4dff5b78bac9e55a77aa278e6b167597a648;p=profile%2Fivi%2Feet.git * eet: compile with -Werror on 64bits too. git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eet@55201 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/configure.ac b/configure.ac index a492a97..c96be0b 100644 --- a/configure.ac +++ b/configure.ac @@ -368,8 +368,8 @@ AC_TRY_RUN( #include 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"],