Index: /branches/eam_branches/ipp-20140610/Ohana/src/tools/src/ftable.c
===================================================================
--- /branches/eam_branches/ipp-20140610/Ohana/src/tools/src/ftable.c	(revision 37006)
+++ /branches/eam_branches/ipp-20140610/Ohana/src/tools/src/ftable.c	(revision 37007)
@@ -460,4 +460,12 @@
       } else {
 	for (j = 0; j < Nv; j++) {
+	  if (!strcmp (type, "byte")) {
+	    memcpy (line, &data[i*Nv*Nb + Nb*j], Nb);
+	    fprintf (stdout, "%d ", *(char *)line);
+	  }
+	  if (!strcmp (type, "short")) {
+	    memcpy (line, &data[i*Nv*Nb + Nb*j], Nb);
+	    fprintf (stdout, "%d ", *(short *)line);
+	  }
 	  if (!strcmp (type, "int")) {
 	    memcpy (line, &data[i*Nv*Nb + Nb*j], Nb);
