summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVyacheslav Reutskiy <rimmed@yandex.ru>2014-11-13 17:03:03 +0000
committerVyacheslav Reutskiy <rimmed@yandex.ru>2014-11-13 17:03:03 +0000
commit1654a12773ad11b5153145a45571fc050925a1be (patch)
tree1dcb4856147833df5bf181bd0e5f2d8b9d8938fd
parent59e0d9712d3bea5ac9e79d853433b1b4924e5cfa (diff)
downloadefl-1654a12773ad11b5153145a45571fc050925a1be.tar.gz
edje_cc: fix log message for authors write procedure.
@fix
-rwxr-xr-xsrc/bin/edje/edje_cc_out.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/edje/edje_cc_out.c b/src/bin/edje/edje_cc_out.c
index b11d933360..455516bda2 100755
--- a/src/bin/edje/edje_cc_out.c
+++ b/src/bin/edje/edje_cc_out.c
@@ -1879,11 +1879,11 @@ data_thread_authors(void *data, Ecore_Thread *thread EINA_UNUSED)
bytes = eet_write(ef, "edje/authors", m, eina_file_size_get(f), compress_mode);
if ((bytes <= 0) || eina_file_map_faulted(f, m))
{
- ERR("Unable to write license part \"%s\".", authors);
+ ERR("Unable to write authors part \"%s\".", authors);
}
else
{
- INF("Wrote %9i bytes (%4iKb) for \"%s\" license entry compress: [real: %2.1f%%]",
+ INF("Wrote %9i bytes (%4iKb) for \"%s\" authors entry compress: [real: %2.1f%%]",
bytes, (bytes + 512) / 1024, license,
100 - (100 * (double)bytes) / ((double)(eina_file_size_get(f))));
}