On Wed, Oct 7, 2009 at 1:45 PM, Vincent Torri <vto...@univ-evry.fr> wrote:
> 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)

In svn, if you have time please take a look at this file, I saw other
comment regarding code not working on windows.

-- 
Cedric BAIL

------------------------------------------------------------------------------
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