Index: trunk/Softwares/Common/src/c/func_math.c
===================================================================
--- trunk/Softwares/Common/src/c/func_math.c	(revision 111)
+++ trunk/Softwares/Common/src/c/func_math.c	(revision 112)
@@ -8,9 +8,10 @@
 		      unsigned int op2)
 {
+  unsigned int size    = 32;
   unsigned int num_bit,carry;
   unsigned int op2_aux = op2;
   unsigned int res     = 0;
   
-  for(num_bit=0;num_bit<32; num_bit++)
+  for(num_bit=0;num_bit<size; num_bit++)
     {
       if (op2_aux == 0)
