Commit 12d298b5 authored by winckel's avatar winckel

Corrected pointer value display in itti_analyzer.

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4283 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent e1f16da4
......@@ -40,7 +40,7 @@ int pointer_dissect_from_buffer(
length = strlen (cbuf);
/* Append the value */
for (i = type->size / 8 - 1; i != 0; i--) {
for (i = type->size / 8 - 1; i >= 0; i--) {
length += sprintf(&cbuf[length], "%02x", value[i]);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment