summaryrefslogtreecommitdiff
path: root/src/format/java/attribute.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/java/attribute.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/java/attribute.c')
-rw-r--r--src/format/java/attribute.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/format/java/attribute.c b/src/format/java/attribute.c
index f5947dd..0cfed92 100644
--- a/src/format/java/attribute.c
+++ b/src/format/java/attribute.c
@@ -31,6 +31,11 @@
#include "java-int.h"
#include "pool.h"
#include "../../common/endianness.h"
+#include "../../panel/log.h"
+
+
+
+#define _(str) str
@@ -231,12 +236,12 @@ bool load_java_attribute(java_format *format, java_attribute *attrib, off_t *pos
else if (result)
{
result = false;
- printf("<OIDAIMPL> Nom d'attribut non supporté : '%s'\n", name);
+ log_variadic_message(LMT_BAD_BINARY, _("Attribute name not supported: '%s'"), name);
}
if (result && attrib_length != (*pos - saved_pos))
- printf("<BADBIN> indication de la taille de l'attribut '%s' non vérifiée : %d vs %d\n",
- name, attrib_length, *pos - saved_pos);
+ log_variadic_message(LMT_BAD_BINARY, _("Size indication of the attribute '%s' not verified: %d vs %d"),
+ name, attrib_length, *pos - saved_pos);
}