Ecore: ecore_pipe: remove ugly FMT_* compatibility strings as Evil has now POSIX printf family functions

SVN revision: 68104
This commit is contained in:
Vincent Torri 2012-02-18 12:55:26 +00:00
parent ad09d3dcb8
commit 85a36a8f7f
1 changed files with 2 additions and 8 deletions

View File

@ -39,12 +39,6 @@
#include "Ecore.h"
#include "ecore_private.h"
#ifdef _WIN32
# define FMT_SSIZE_T "%Id"
#else
# define FMT_SSIZE_T "%zd"
#endif
/* How of then we should retry to write to the pipe */
#define ECORE_PIPE_WRITE_RETRY 6
@ -414,7 +408,7 @@ ecore_pipe_write(Ecore_Pipe *p,
;
else
{
ERR("An unhandled error (ret: " FMT_SSIZE_T " errno: %d)"
ERR("An unhandled error (ret: %zd errno: %d)"
"occurred while writing to the pipe the length",
ret, errno);
}
@ -448,7 +442,7 @@ ecore_pipe_write(Ecore_Pipe *p,
;
else
{
ERR("An unhandled error (ret: " FMT_SSIZE_T " errno: %d)"
ERR("An unhandled error (ret: %zd errno: %d)"
"occurred while writing to the pipe the length",
ret, errno);
}