summaryrefslogtreecommitdiff
path: root/src/format/exe_format.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-03-03 01:03:15 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-03-03 01:03:15 (GMT)
commitbbd04bf5f23e7dca1917247cb92824805b22a2a4 (patch)
tree548392c1c249ae5cde936f982783f192416e080c /src/format/exe_format.c
parentc2d9948e1e67b48d1a6c8a711024d8dd3f6ac507 (diff)
Created a system messages panel.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@50 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/format/exe_format.c')
-rw-r--r--src/format/exe_format.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/format/exe_format.c b/src/format/exe_format.c
index 1077cfe..8a03243 100644
--- a/src/format/exe_format.c
+++ b/src/format/exe_format.c
@@ -29,9 +29,13 @@
#include "exe_format-int.h"
+#include "../panel/log.h"
+#define _(str) str
+
+
/* ------------------------ DETECTION DE FORMATS EXECUTABLES ------------------------ */
@@ -239,7 +243,7 @@ exe_format *load_new_exe_format(const uint8_t *content, off_t length)
for (i = 0; i < exe_formats_count && result == NULL; i++)
if (exe_formats[i].match(content, length))
{
- printf("<LOGINFO> %s is matching...\n", exe_formats[i].name);
+ log_variadic_message(LMT_INFO, _("%s is matching..."), exe_formats[i].name);
result = exe_formats[i].load(content, length);