Explorar el Código

Fix another size_t variable type

Richard Laager hace 15 años
padre
commit
041156111a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/docsis_decode.c

+ 1 - 1
src/docsis_decode.c

@@ -218,7 +218,7 @@ void decode_ushort_list (unsigned char *tlvbuf, symbol_type *sym, size_t length)
 
 void decode_unknown (unsigned char *tlvbuf, symbol_type *sym, size_t length )
 {
-  int len=0;
+  size_t len=0;
   char *cp,*value;
   char hexvalue[514];