On Wed, 7 Oct 2009, Enlightenment SVN wrote:

> Log:
>       * edje: Another round of llvm warning removal.
>
> Author:       cedric
> Date:         2009-10-07 04:36:23 -0700 (Wed, 07 Oct 2009)
> New Revision: 42932
>
> Modified:
>  trunk/edje/src/lib/edje_edit.c trunk/edje/src/lib/edje_util.c
>
> Modified: trunk/edje/src/lib/edje_edit.c
> ===================================================================
> --- trunk/edje/src/lib/edje_edit.c    2009-10-07 11:27:15 UTC (rev 42931)
> +++ trunk/edje/src/lib/edje_edit.c    2009-10-07 11:36:23 UTC (rev 42932)
> @@ -5378,7 +5378,7 @@
>    strcpy(tmpn, "/tmp/edje_edit.edc-tmp-XXXXXX");
>    if (!(fd = mkstemp(tmpn))) return NULL;
>    printf("*** tmp file: %s\n", tmpn);
> -   if (!(f = fopen(tmpn, "w"))) return NULL;
> +   if (!(f = fdopen(fd, "w"))) return NULL;

can you please use "wb", for compatibility with Windows ? (i can't do that 
right now)

Vincent

------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to