This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch dev/dimmus/test
in repository efl.
View the commit online.
commit e381c5e893b779785d15b1eaf59bec8d6b74b007
Author: dimmus <dmitri.chudi...@gmail.com>
AuthorDate: Mon Oct 21 09:23:15 2024 +0500
tests: getpid is of type 'int' but we try to prinf type 'unsigned int'. Fix this.
---
src/tests/efl_check.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/tests/efl_check.h b/src/tests/efl_check.h
index a8f21dce57..6458e2c00a 100644
--- a/src/tests/efl_check.h
+++ b/src/tests/efl_check.h
@@ -485,7 +485,7 @@ _efl_suite_build_and_run(int argc, const char **argv, const char *suite_name, co
#ifdef ENABLE_TIMING_INFO
if (timing)
{
- printf("SUITE TIME(%u) %s: %.5g\n", getpid(), suite_name, _timing_time_get() - tstart);
+ printf("SUITE TIME(%u) %s: %.5g\n", (unsigned int)getpid(), suite_name, _timing_time_get() - tstart);
fflush(stdout);
}
#endif
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.